-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
26 lines (23 loc) · 1.06 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
from setuptools import setup, find_packages
from pathlib import Path
__author__ = 'lozuponelab'
__version__ = '0.6.6'
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name="SCNIC",
version=__version__,
setup_requires=['pytest-runner'],
test_require=['pytest'],
install_requires=["numpy", "scipy>=1.9.0,<=1.10.1", "networkx>=2", "biom-format", "pandas>=1", "scikit-bio", "statsmodels", "tqdm", "seaborn",
"h5py"],
scripts=['scripts/SCNIC_analysis.py', 'scripts/module_enrichment.py'],
packages=find_packages(),
description="A tool for finding and summarizing modules of highly correlated observations in compositional data",
long_description=long_description,
long_description_content_type='text/markdown',
author="Lozupone Lab",
author_email='[email protected]',
url="https://github.com/lozuponelab/SCNIC/",
download_url="https://github.com/lozuponelab/SCNIC/tarball/%s" % __version__
)