forked from opendatacube/datacube-explorer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·71 lines (67 loc) · 1.68 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
#!/usr/bin/env python3
from setuptools import find_packages, setup
tests_require = [
"black",
"docutils",
"boltons",
"digitalearthau",
"flake8",
"isort[requirements]",
"jsonschema > 3",
"pytest",
"pytest-benchmark",
"pytest-cov",
"requests-html",
]
extras_require = {
"test": tests_require,
# These are all optional but nice to have on a real deployment
"deployment": [
# Performance
"ciso8601",
"bottleneck",
# The default run.sh and docs use gunicorn+meinheld
"gunicorn",
"setproctitle",
"meinheld",
"gevent",
# Monitoring
"raven",
"blinker",
],
}
setup(
name="datacube-explorer",
use_scm_version=True,
setup_requires=["setuptools_scm"],
python_requires=">=3.6",
url="https://github.com/opendatacube/datacube-explorer",
author="Geoscience Australia",
author_email="[email protected]",
packages=find_packages(),
include_package_data=True,
install_requires=[
"cachetools",
"click",
"dataclasses>=0.6;python_version<'3.7'",
"datacube>=1.8",
"fiona",
"flask",
"Flask-Caching",
"flask_themes @ git+https://[email protected]/opendatacube/flask-themes@master",
"geoalchemy2",
"geographiclib",
"jinja2",
"pyorbital",
"pyproj",
"python-dateutil",
"python-rapidjson",
"shapely",
"simplekml",
"sqlalchemy",
"structlog",
],
tests_require=tests_require,
extras_require=extras_require,
entry_points={"console_scripts": ["cubedash-gen = cubedash.generate:cli"]},
)