forked from opendatacube/datacube-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·142 lines (132 loc) · 4.63 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
134
135
136
137
138
139
140
141
142
#!/usr/bin/env python
import versioneer
from setuptools import setup, find_packages
import os
tests_require = [
'compliance-checker',
'hypothesis',
'mock',
'objgraph',
'pycodestyle',
'pylint',
'pytest',
'pytest-cov',
'pytest-timeout',
]
extras_require = {
'performance': ['ciso8601', 'bottleneck'],
'interactive': ['matplotlib', 'fiona'],
'distributed': ['distributed', 'dask[distributed]'],
'doc': ['Sphinx', 'setuptools'],
'replicas': ['paramiko', 'sshtunnel', 'tqdm'],
'celery': ['celery>=4', 'redis'],
's3': ['boto3', 'SharedArray', 'pathos', 'zstandard'],
'test': tests_require,
}
# An 'all' option, following ipython naming conventions.
extras_require['all'] = sorted(set(sum(extras_require.values(), [])))
extra_plugins = dict(read=[], write=[], index=[])
if os.name != 'nt':
extra_plugins['read'].extend([
's3aio = datacube.drivers.s3.driver:reader_driver_init [s3]',
's3aio_test = datacube.drivers.s3.driver:reader_test_driver_init [s3]',
])
extra_plugins['write'].extend([
's3aio = datacube.drivers.s3.driver:writer_driver_init [s3]',
's3aio_test = datacube.drivers.s3.driver:writer_test_driver_init [s3]',
])
extra_plugins['index'].extend([
's3aio_index = datacube.drivers.s3aio_index:index_driver_init [s3]',
])
setup(
name='datacube',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
python_requires='>=3.5.2',
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(),
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.5",
"Programming Language :: Python :: 3.6",
"Topic :: Scientific/Engineering :: GIS",
"Topic :: Scientific/Engineering :: Information Analysis",
],
packages=find_packages(
exclude=('tests', 'tests.*',
'integration_tests', 'integration_tests.*')
),
package_data={
'': ['*.yaml', '*/*.yaml'],
},
scripts=[
'datacube_apps/scripts/pbs_helpers.sh'
],
setup_requires=[
'pytest-runner'
],
install_requires=[
'affine',
'cachetools',
'click>=5.0',
'cloudpickle>=0.4',
'dask[array]',
'futures; python_version<"3"',
'gdal>=1.9',
'jsonschema',
'netcdf4',
'numpy',
'pathlib;python_version<"3"',
'psycopg2',
'pypeg2',
'python-dateutil',
'pyyaml',
'rasterio>=0.9a10', # required for zip reading, 0.9 gets around 1.0a ordering problems
'singledispatch',
'sqlalchemy',
'xarray>=0.9', # >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-stacker = datacube_apps.stacker:main',
'datacube-worker = datacube.execution.worker:main',
'datacube-fixer = datacube_apps.stacker:fixer_main',
'datacube-ncml = datacube_apps.ncml:ncml_app',
'pixeldrill = datacube_apps.pixeldrill:main [interactive]',
'movie_generator = datacube_apps.movie_generator:main',
'datacube-simple-replica = datacube_apps.simple_replica:replicate [replicas]'
],
'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.index:index_driver_init',
*extra_plugins['index'],
],
},
)