-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (33 loc) · 920 Bytes
/
setup.py
File metadata and controls
40 lines (33 loc) · 920 Bytes
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
38
39
40
# coding utf8
import setuptools
from taxontools.versions import get_versions
with open('README.md') as f:
LONG_DESCRIPTION = f.read()
setuptools.setup(
name="taxontools",
version=get_versions(),
author="Yuxing Xu",
author_email="xuyuxing@mail.kib.ac.cn",
description="A toolkit for analyzing Taxonomy",
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
url="https://github.com/SouthernCD/taxontools",
entry_points={
"console_scripts": ["TaxonTools = taxontools.cli:main"]
},
package_data={
"taxontools": ['one_kp/*'],
},
packages=setuptools.find_packages(),
install_requires=[
"yxtree",
"yxutil",
"yxmath",
"mlxtend>=0.17.2",
"scipy>=1.4.1",
"numpy>=1.18.1",
"biopython<=1.80",
# "thefuzz",
],
python_requires='>=3.5',
)