forked from nextstrain/augur
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
80 lines (75 loc) · 2.77 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
from pathlib import Path
from setuptools import setup
base_dir = Path(__file__).parent.resolve()
version_file = base_dir / "augur/__version__.py"
readme_file = base_dir / "README.md"
# Eval the version file to get __version__; avoids importing our own package
with version_file.open() as f:
exec(f.read())
# Get the long description from the README file
with readme_file.open(encoding = "utf-8") as f:
long_description = f.read()
setup(
name = "nextstrain-augur",
version = __version__,
author = "Nextstrain developers",
author_email = "[email protected], [email protected]",
description = "A bioinformatics toolkit for phylogenetic analysis",
long_description = long_description,
long_description_content_type = "text/markdown",
keywords = "nextstrain, molecular epidemiology",
url = "https://github.com/nextstrain/augur",
project_urls = {
"Bug Reports": "https://github.com/nextstrain/augur/issues",
"Change Log": "https://github.com/nextstrain/augur/blob/master/CHANGES.md#next",
"Source": "https://github.com/nextstrain/augur",
},
packages = ['augur'],
package_data = {'augur': ['data/*']},
data_files = [("", ["LICENSE.txt"])],
python_requires = '>=3.4',
install_requires = [
"bcbio-gff >=0.6.0, ==0.6.*",
"biopython >=1.67, ==1.*",
"jsonschema >=3.0.0, ==3.*",
"packaging >=19.2",
"pandas >=0.20.0, ==0.*",
"phylo-treetime >=0.7.2, ==0.7.*",
"snakemake >=5.4.0, ==5.*"
],
extras_require = {
'full': [
"cvxopt >=1.1.9, ==1.1.*",
"matplotlib >=2.0, ==2.*",
"seaborn >=0.9.0, ==0.9.*"
],
'dev': [
"pylint >=1.7.6, ==1.7.*",
"pytest >=3.2.1, ==3.*",
"recommonmark >=0.5.0, ==0.*",
"Sphinx >=2.0.1, ==2.*",
"sphinx-argparse >=0.2.5, ==0.*",
"sphinx-markdown-tables >= 0.0.9",
"sphinx-rtd-theme >=0.4.3, ==0.*",
"wheel >=0.32.3, ==0.32.*",
"ipdb >=0.10.1, ==0.*"
]
},
classifiers = [
"Development Status :: 3 - Alpha",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"License :: OSI Approved :: GNU Affero General Public License v3",
# Python 3 only; pathlib is >=3.4
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6"
],
# Install an "augur" program which calls augur.__main__.main()
# https://setuptools.readthedocs.io/en/latest/setuptools.html#automatic-script-creation
entry_points = {
"console_scripts": [
"augur = augur.__main__:main",
]
}
)