forked from chaoss/augur
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
77 lines (72 loc) · 1.79 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
#SPDX-License-Identifier: MIT
"""
SPDX-License-Identifier: MIT
Install augur package with pip.
"""
from setuptools import setup, find_packages
from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, "README.md"), encoding="utf-8") as f:
long_description = f.read()
exec(open("metadata.py").read())
setup(
name=__slug__,
version=__version__,
include_package_data=True,
description=__short_description__,
long_description=long_description,
url=__url__,
author="Derek Howard",
author_email="[email protected]",
packages=find_packages(),
license=__license__,
classifiers=[
"Intended Audience :: Developers",
"Topic :: Software Development :: Version Control",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.6",
],
install_requires=[
"coloredlogs",
"beaker",
"sqlalchemy",
"flask_login",
"flask",
"pandas==1.1.3",
"numpy==1.19.5",
"requests",
"flask_cors",
"flask_wtf",
"psycopg2-binary",
"click",
"psutil",
"gunicorn",
"six>=1.15.0",
"bokeh",
"selenium",
"nltk",
"h5py<2.11.0,>=2.10.0",
"scipy==1.4.1",
"blinker",
"protobuf > 3.6.0"
],
extras_require={
"dev": [
"tox",
"pytest",
"toml >= 0.10.2",
"ipdb",
"sphinx",
"sphinx_rtd_theme",
"sphinxcontrib-openapi",
"sphinxcontrib-redoc",
"docutils==0.15"
]
},
entry_points={
"console_scripts": [
"augur=augur.cli._multicommand:run"
],
}
)