-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
27 lines (27 loc) · 1.25 KB
/
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
from setuptools import setup, find_packages
data_files_to_include = [('', ['README.md', 'LICENSE'])]
setup(name='tcrpeg',
version='1.0.6',
description='Recovering the repertoire probability, generating and encoding CDR3 sequences',
long_description='To be added',
url='https://github.com/jiangdada1221/TCRpeg',
author='Yuepeng Jiang',
author_email='[email protected]',
license='GPLv3',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Healthcare Industry',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Medical Science Apps.',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: English',
'Programming Language :: Python :: 3',
],
packages=find_packages(),
install_requires=['numpy','torch','matplotlib','tqdm','pandas','scikit-learn','Scipy'],
data_files = data_files_to_include,
include_package_data=True,
zip_safe=False)