-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
133 lines (123 loc) · 4 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
#!/usr/bin/env python
from setuptools import setup, find_packages
tests_require = [
'hypothesis',
'pycodestyle',
'pylint',
'pytest',
'pytest-cov',
'pytest-timeout',
'pytest-httpserver',
'moto',
]
doc_require = [
'Sphinx',
'sphinx_rtd_theme',
'sphinx_autodoc_typehints', # Propagate mypy info into docs
'sphinx-click',
'recommonmark',
'setuptools', # version related dependencies
'setuptools_scm[toml]',
]
extras_require = {
'performance': ['ciso8601', 'bottleneck'],
'distributed': ['distributed', 'dask[distributed]'],
'doc': doc_require,
's3': ['boto3', 'botocore'],
'test': tests_require,
'cf': ['compliance-checker>=4.0.0'],
}
extras_require['dev'] = sorted(set(sum([extras_require[k] for k in [
'test',
'doc',
'performance',
's3',
'distributed',
]], [])))
# An 'all' option, following ipython naming conventions.
extras_require['all'] = sorted(set(sum(extras_require.values(), [])))
extra_plugins = dict(read=[], write=[], index=[])
setup(
name='datacube',
python_requires='>=3.8.0',
url='https://github.com/opendatacube/datacube-core',
author='Open Data Cube',
maintainer='Open Data Cube',
maintainer_email='',
description='An analysis environment for satellite and other earth observation data',
long_description=open('README.rst').read(),
long_description_content_type='text/x-rst',
license='Apache License 2.0',
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX",
"Operating System :: POSIX :: BSD",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering :: GIS",
"Topic :: Scientific/Engineering :: Information Analysis",
],
packages=find_packages(
exclude=('tests', 'tests.*',
'integration_tests', 'integration_tests.*')
),
package_data={
'': ['*.yaml', '*/*.yaml'],
},
scripts=[],
install_requires=[
'affine',
'pyproj>=2.5',
'shapely>=1.6.4',
'cachetools',
'click>=5.0',
'cloudpickle>=0.4',
'dask[array]',
'distributed',
'jsonschema',
'netcdf4',
'numpy',
'psycopg2',
'lark',
'pandas',
'python-dateutil',
'pyyaml',
'rasterio>=1.0.2,!=1.3.0', # Multi-band re-project fixed in 1.0.2; warping broken in 1.3.0
'sqlalchemy',
'toolz',
'xarray>=0.9,!=2022.6.0', # >0.9 fixes most problems with `crs` attributes being lost
],
extras_require=extras_require,
tests_require=tests_require,
entry_points={
'console_scripts': [
'datacube = datacube.scripts.cli_app:cli',
'datacube-search = datacube.scripts.search_tool:cli',
'datacube-worker = datacube.execution.worker:main',
],
'datacube.plugins.io.read': [
'netcdf = datacube.drivers.netcdf.driver:reader_driver_init',
*extra_plugins['read'],
],
'datacube.plugins.io.write': [
'netcdf = datacube.drivers.netcdf.driver:writer_driver_init',
*extra_plugins['write'],
],
'datacube.plugins.index': [
'default = datacube.index.postgres.index:index_driver_init',
'null = datacube.index.null.index:index_driver_init',
'memory = datacube.index.memory.index:index_driver_init',
'postgis = datacube.index.postgis.index:index_driver_init',
*extra_plugins['index'],
],
},
)