forked from CS-SI/eodag
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
189 lines (181 loc) · 5.34 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
[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 (CSSI)
author_email = [email protected]
url = https://github.com/CS-SI/eodag
license = Apache 2.0
license_file = 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.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: Implementation :: CPython
Topic :: Internet :: WWW/HTTP :: Indexing/Search
Topic :: Scientific/Engineering :: GIS
Topic :: Software Development :: Libraries :: Python Modules
[options]
packages = find:
include_package_data = True
python_requires = >=3.6
install_requires =
click
requests
python-dateutil
PyYAML
tqdm
shapely
pyshp
owslib < 0.26;python_version>='3.10'
owslib;python_version<'3.10'
orjson
geojson
pyproj >= 2.1.0
usgs >= 0.3.1
boto3
fastapi >= 0.93.0
uvicorn
jsonpath-ng
lxml
whoosh
pystac >= 1.0.0b1
ecmwf-api-client
cdsapi
[options.extras_require]
dev =
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
fastapi[all]
notebook = tqdm[notebook]
tutorials =
eodag-cube >= 0.2.0
jupyter
ipyleaflet >= 0.10.0
ipywidgets
matplotlib
folium
imageio
rasterio
netcdf4
docs =
sphinx
sphinx-book-theme < 1.0.0
sphinx-copybutton
sphinxcontrib-jquery
nbsphinx
ipython!=8.7.0
# pined ipython until https://github.com/spatialaudio/nbsphinx/issues/687 is fixed
[options.packages.find]
exclude =
*.tests
*.tests.*
tests.*
tests
[options.package_data]
* =
LICENSE
NOTICE
[options.entry_points]
console_scripts =
eodag = eodag.cli:eodag
eodag.plugins.api =
UsgsApi = eodag.plugins.apis.usgs:UsgsApi
EcmwfApi = eodag.plugins.apis.ecmwf:EcmwfApi
CdsApi = eodag.plugins.apis.cds:CdsApi
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
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
eodag.plugins.search =
CSWSearch = eodag.plugins.search.csw:CSWSearch
QueryStringSearch = eodag.plugins.search.qssearch:QueryStringSearch
AwsSearch = eodag.plugins.search.qssearch:AwsSearch
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
BuildPostSearchResult = eodag.plugins.search.build_search_result:BuildPostSearchResult
[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