-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
43 lines (41 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
from setuptools import setup, find_packages
import versioneer
# conda package requirements
requirements = [
'numpy',
'pandas',
'networkx',
'scikit-learn',
'markov_clustering',
'parmap',
'python-louvain',
'matplotlib',
'scipy==1.8'
# 'tcrdist3'
]
setup(
name='clusTCR',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description="a Python interface for rapid clustering of large sets of CDR3 sequences",
license="MIT",
author="Sebastiaan Valkiers & Max Van Houcke",
author_email='sebastiaan.valkiers@uantwerpen.be',
url='https://github.com/svalkiers/clustcr',
packages=find_packages(exclude=('analysis',)),
package_data={
'clustcr': ['input/adaptive_imgt_mapping.csv',
'input/vdjdb/*',
'input/alphabeta_gammadelta_db.tsv',
'modules/olga/default_models/*/*',
'analysis/cq_classifier.pkl']
},
include_package_data=True,
install_requires=requirements,
keywords='https://github.com/svalkiers/clustcr',
classifiers=[
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
]
)