forked from lozuponelab/AMON
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (20 loc) · 1016 Bytes
/
Copy pathsetup.py
File metadata and controls
22 lines (20 loc) · 1016 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup, find_packages
from AMON import __version__ as version
__author__ = 'lozuponelab'
__version__ = version
setup(
name="AMON-bio",
version=__version__,
setup_requires=['pytest-runner'],
tests_require=['pytest'],
install_requires=['scipy', 'biom-format', 'pandas', 'matplotlib', 'statsmodels', 'numpy', 'aiohttp', 'seaborn',
'matplotlib-venn', 'KEGG-parser'],
scripts=['scripts/amon.py', 'scripts/extract_ko_genome_from_organism.py'],
packages=find_packages(),
description="Annotation of Metabolite Origin via Networks: A tool for predicting putative metabolite origins for"
"microbes or between microbes and host with or without metabolomics data",
author="Michael Shaffer, Kumar Thurimella",
author_email='lozuponelab.dev@olucdenver.onmicrosoft.com',
url="https://github.com/lozuponelab/AMON/",
download_url="https://github.com/lozuponelab/AMON/tarball/%s" % __version__
)