-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathsetup.py
32 lines (29 loc) · 1020 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
#!/usr/bin/env python
from setuptools import setup, find_packages
from inStrain._version import __version__
setup(name='inStrain',
version=__version__,
description='Calculation of strain-level metrics',
url='https://github.com/MrOlm/inStrain',
author='Matt Olm and Alex Crits-Christoph',
author_email='mattolm@berkeley.edu',
license='MIT',
package_data={'inStrain': ['helper_files/NullModel.txt']},
packages=find_packages(exclude=["test"]),
scripts=['bin/inStrain'],
python_requires='>=3.4.0',
install_requires=[
'numpy',
'pandas>=0.25,!=1.1.3',
'seaborn',
'matplotlib',
'biopython<=1.74',
'tqdm',
'pysam>=0.15', # This sets a requirement for python 3.7 for now, but so be it. pysam v0.9 (which works on python 3.8) has a broken iterator (has no stop)
'networkx',
'h5py',
'psutil',
'lmfit',
'pytest'
],
zip_safe=False)