forked from CS-SI/eodag
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
228 lines (218 loc) · 6.35 KB
/
setup.cfg
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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
[metadata]
name = eodag
description = Earth Observation Data Access Gateway
long_description = file:README.rst
long_description_content_type = text/x-rst
author = CS GROUP - France
author_email = [email protected]
url = https://github.com/CS-SI/eodag
license = Apache 2.0
license_files = LICENSE
project_urls =
Bug Tracker = https://github.com/CS-SI/eodag/issues/
Documentation = https://eodag.readthedocs.io
Source Code = https://github.com/CS-SI/eodag
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
Intended Audience :: Science/Research
Natural Language :: English
License :: OSI Approved :: Apache Software License
Operating System :: Microsoft :: Windows
Operating System :: POSIX :: Linux
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: Implementation :: CPython
Topic :: Internet :: WWW/HTTP :: Indexing/Search
Topic :: Scientific/Engineering :: GIS
Topic :: Software Development :: Libraries :: Python Modules
Typing :: Typed
[options]
packages = find:
include_package_data = True
python_requires = >=3.6
install_requires =
annotated-types
boto3
botocore
click
geojson
jsonpath-ng < 1.6.0
lxml
orjson < 3.10.0;python_version>='3.12' and platform_system=='Windows'
orjson;python_version<'3.12' or platform_system!='Windows'
pydantic >= 2.1.0
pydantic_core
pyproj >= 2.1.0
pyshp
pystac >= 1.0.0b1
python-dateutil
PyYAML
requests
setuptools
shapely >= 2.0.0
stream-zip
tqdm
typing_extensions >= 4.8.0
urllib3
Whoosh
[options.extras_require]
all =
eodag[all-providers,csw,server,tutorials]
all-providers =
eodag[ecmwf,usgs]
csw =
OWSLib >=0.27.1
ecmwf =
ecmwf-api-client
usgs =
usgs >= 0.3.1
server =
fastapi >= 0.93.0
pygeofilter
starlette
uvicorn[standard]
pydantic-settings
cachetools
notebook = tqdm[notebook]
tutorials =
eodag[notebook]
eodag-cube >= 0.2.0
jupyter
ipyleaflet >= 0.10.0
ipywidgets
matplotlib
folium
imageio
rasterio
netcdf4
dev =
eodag[all-providers,csw,server,stubs]
pytest
pytest-cov
# pytest-html max version set and py requirement added
# until https://github.com/pytest-dev/pytest-html/issues/559 is fixed
py >= 1.8.2
pytest-html < 3.2.0
pytest-xdist
pytest-socket
pytest-instafail
tox
faker
moto
twine
wheel
flake8
pre-commit
responses < 0.24.0
fastapi[all]
stdlib-list
mypy
stubs =
boto3-stubs[essential]
types-lxml
types-cachetools
types-requests
types-python-dateutil
types-setuptools
types-tqdm
docs =
eodag[all,stubs]
sphinx
sphinx-book-theme >= 1.0.0
sphinx-copybutton
sphinx-tabs
nbsphinx
sphinx_autodoc_typehints
[options.packages.find]
exclude =
*.tests
*.tests.*
tests.*
tests
[options.package_data]
* =
LICENSE
NOTICE
py.typed
[options.entry_points]
console_scripts =
eodag = eodag.cli:eodag
eodag.plugins.api =
UsgsApi = eodag.plugins.apis.usgs:UsgsApi [usgs]
EcmwfApi = eodag.plugins.apis.ecmwf:EcmwfApi [ecmwf]
eodag.plugins.auth =
GenericAuth = eodag.plugins.authentication.generic:GenericAuth
HTTPHeaderAuth = eodag.plugins.authentication.header:HTTPHeaderAuth
AwsAuth = eodag.plugins.authentication.aws_auth:AwsAuth
OAuth = eodag.plugins.authentication.oauth:OAuth
TokenAuth = eodag.plugins.authentication.token:TokenAuth
OIDCAuthorizationCodeFlowAuth = eodag.plugins.authentication.openid_connect:OIDCAuthorizationCodeFlowAuth
OIDCTokenExchangeAuth = eodag.plugins.authentication.token_exchange:OIDCTokenExchangeAuth
KeycloakOIDCPasswordAuth = eodag.plugins.authentication.keycloak:KeycloakOIDCPasswordAuth
HttpQueryStringAuth = eodag.plugins.authentication.qsauth:HttpQueryStringAuth
SASAuth = eodag.plugins.authentication.sas_auth:SASAuth
eodag.plugins.crunch =
FilterLatestIntersect = eodag.plugins.crunch.filter_latest_intersect:FilterLatestIntersect
FilterLatestByName = eodag.plugins.crunch.filter_latest_tpl_name:FilterLatestByName
FilterOverlap = eodag.plugins.crunch.filter_overlap:FilterOverlap
FilterProperty = eodag.plugins.crunch.filter_property:FilterProperty
FilterDate = eodag.plugins.crunch.filter_date:FilterDate
eodag.plugins.download =
AwsDownload = eodag.plugins.download.aws:AwsDownload
HTTPDownload = eodag.plugins.download.http:HTTPDownload
S3RestDownload = eodag.plugins.download.s3rest:S3RestDownload
CreodiasS3Download = eodag.plugins.download.creodias_s3:CreodiasS3Download
eodag.plugins.search =
CSWSearch = eodag.plugins.search.csw:CSWSearch [csw]
QueryStringSearch = eodag.plugins.search.qssearch:QueryStringSearch
ODataV4Search = eodag.plugins.search.qssearch:ODataV4Search
PostJsonSearch = eodag.plugins.search.qssearch:PostJsonSearch
StacSearch = eodag.plugins.search.qssearch:StacSearch
StaticStacSearch = eodag.plugins.search.static_stac_search:StaticStacSearch
BuildSearchResult = eodag.plugins.search.build_search_result:BuildSearchResult
BuildPostSearchResult = eodag.plugins.search.build_search_result:BuildPostSearchResult
DataRequestSearch = eodag.plugins.search.data_request_search:DataRequestSearch
CreodiasS3Search = eodag.plugins.search.creodias_s3:CreodiasS3Search
CopMarineSearch = eodag.plugins.search.cop_marine:CopMarineSearch
[flake8]
ignore = E203, W503
max_line_length = 120
exclude =
.git,
__pycache__,
.tox,
build,
dist,
docs/conf.py,
tests/context.py
[isort]
multi_line_output = 3
include_trailing_comma = True
force_grid_wrap = 0
use_parentheses = True
line_length = 88
ensure_newline_before_comments = True
known_first_party = eodag,tests
known_third_party = concurrent.futures
default_section = THIRDPARTY
skip =
.git,
__pycache__,
.tox,
build,
dist,
docs/conf.py,
tests/utils.py,
eodag/utils/__init__.py,
[pydocstyle]
# Check for docstring presence only
select = D1
add_ignore = D107,D100,D105
# Don't require docstrings for tests or setup
match = (?!test|setup).*\.py