forked from kmayerb/tcrdist3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (38 loc) · 1.31 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
from setuptools import setup, find_packages
PACKAGES = find_packages()
# read the contents of your README file
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
opts = dict(name='tcrdist3',
maintainer='Koshlan Mayer-Blackwell',
maintainer_email='[email protected]',
description='flexible distance measures for comparing T cell receptors',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/kmayerb/tcrdist3',
license='MIT',
author='Koshlan Mayer-Blackwell',
author_email='[email protected]',
version='0.2.2',
packages=PACKAGES,
package_data={"": ["*.csv","*.tsv","*.txt"]},
)
install_reqs = [
'pandas>=0.24.2',
'numpy>=1.16.4',
'parasail>=1.1.17',
'scipy>=1.4.1',
'pwseqdist>=0.6',
'numba',
'zipdist>=0.1.5',
'fishersapi',
'hierdiff>=0.4',
'palmotif>=0.2',
'tcrsampler>=0.1.9',
'parmap>=1.5.2',
'olga>=1.2.1',
'dill>=0.3.2']
if __name__ == "__main__":
setup(**opts, install_requires=install_reqs)