forked from MrOlm/inStrain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (33 loc) · 952 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
35
36
#!/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='[email protected]',
license='MIT',
package_data={'inStrain': ['helper_files/NullModel.txt']},
#packages=['inStrain'],
packages=find_packages(),
scripts=['bin/inStrain'],
python_requires='>=3.4.0',
install_requires=[
'numpy',
'pandas>=0.25,!=1.1.3',
'seaborn',
'matplotlib',
'biopython<=1.74',
'scikit-learn',
'pytest',
'tqdm',
'pysam',
'networkx',
'h5py',
'psutil',
'drep',
'lmfit',
'numba'
],
zip_safe=False)