-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
34 lines (31 loc) · 1019 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
32
33
34
from setuptools import setup;
from setuptools import find_packages;
def readme():
with open('README.md') as f:
return f.read()
setup(name='mhcnuggets',
version='2.4.0',
description='MHCnuggets: Neoantigen peptide MHC binding prediction for class I and II',
long_description=readme(),
long_description_content_type='text/markdown',
url='http://karchinlab.org/apps/mhcnuggets.html', # TODO
author='Melody Shao',
author_email='[email protected]',
license='Apache License',
packages=find_packages(exclude=['tests']),
include_package_data=True,
install_requires=[
'numpy',
'scipy',
'scikit-learn',
'pandas',
'keras',
'tensorflow',
'varcode',
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics'
],
zip_safe=True)