forked from opendatacube/datacube-wps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
50 lines (45 loc) · 1.48 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
from setuptools import find_packages, setup
INSTALL_REQUIRES = [
'flask',
'gunicorn',
'datacube',
'altair',
# 'altair_saver',
'python-dateutil',
'sentry_sdk[flask]',
# 'blinker',
'prometheus-flask-exporter',
'pywps',
'pyarrow'
]
DESCRIPTION = ("datacube-wps is an implementation of the Web Processing Service standard "
"from the Open Geospatial Consortium.")
KEYWORDS = 'ODC WPS OGC processing'
config = {
'description': DESCRIPTION,
'keywords': KEYWORDS,
'author': 'Digital Earth Australia',
'license': 'Apache License 2.0',
'platforms': 'all',
'url': 'http://www.ga.gov.au/dea',
'download_url': 'https://github.com/opendatacube/datacube-wps',
'author_email': '[email protected]',
'maintainer': 'Digital Earth Australia',
'maintainer_email': '[email protected]',
'classifiers': [
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: GIS'
],
'install_requires': INSTALL_REQUIRES,
'setup_requires': ['setuptools_scm'],
'use_scm_version': {"local_scheme": lambda version: ""},
'packages': find_packages(),
'name': 'datacube-wps'
}
setup(**config)