-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
31 lines (30 loc) · 922 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
from setuptools import setup
setup(
name='hmmhc',
version='0.1',
description='Hidden Markov model-based MHC II binding predictor',
author='Maxim Artyomov and Ilya Kizhvatov',
author_email='[email protected]',
url='https://github.com/artyomovlab/hmmhc',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Operating System :: OS Independent',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics'
],
packages=['hmmhc'],
install_requires=[
'numpy',
'pandas'
],
entry_points = {
'console_scripts': ['hmmhc-predict=hmmhc.cmdline:main'],
},
test_suite='nose.collector',
tests_require=['nose'],
include_package_data=True,
zip_safe=False
)