-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (34 loc) · 1.17 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
30
31
32
33
34
35
36
37
from setuptools import setup, find_packages
from src.detaxa import __version__ as ptv
INSTALL_REQUIRES = [
pkg for pkg in open('requirements.txt').readlines()
]
setup(
name='detaxa',
version= ptv,
author='Paul Li',
author_email='[email protected]',
url='https://github.com/poeli/taxonomy',
license='LICENSE',
packages=['detaxa', 'detaxa.taxonomy_db'],
include_package_data=True,
package_dir={'': 'src'},
package_data={'detaxa':['taxonomy_db/*.json']},
description='NCBI taxonomy and lineage lookup',
keywords=["taxonomy", "bioinformatics", "tree"],
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
entry_points={
'console_scripts': ['detaxa = detaxa.__main__:cli' ]
},
install_requires=INSTALL_REQUIRES,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
],
zip_safe=False
)