forked from WrightonLabCSU/DRAM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (25 loc) · 1.11 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
from setuptools import setup, find_packages
from mag_annotator import __version__ as version
from os import path
__author__ = 'shafferm'
__version__ = version
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name="DRAM-bio",
version=__version__,
scripts=['scripts/DRAM.py', 'scripts/DRAM-v.py', 'scripts/DRAM-setup.py'],
packages=find_packages(),
description="Distilled and Refined Annotation of Metabolism: A tool for the annotation and curation of function for"
" microbial and viral genomes",
long_description=long_description,
long_description_content_type='text/markdown', # Optional (see note above)
package_data={'mag_annotator': ['CONFIG']},
python_requires='>=3',
install_requires=['scikit-bio', 'pandas', 'altair', 'sqlalchemy', 'networkx', 'openpyxl', 'numpy'],
author="Michael Shaffer",
author_email='[email protected]',
url="https://github.com/shafferm/DRAM/",
download_url="https://github.com/shafferm/DRAM/tarball/%s" % __version__
)