forked from bopen/xarray-sentinel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
52 lines (44 loc) · 1.27 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
[metadata]
name = xarray-sentinel
author = B-Open
author_email = [email protected]
license = Apache License 2.0
description = Easily explore and access the SAR data products of the Copernicus Sentinel-1 satellite mission
url = https://github.com/bopen/xarray-sentinel
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Science/Research
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Topic :: Scientific/Engineering
long_description_content_type=text/markdown
long_description = file: README.md
[options]
packages = find:
python_requires = >=3.7
install_requires =
dask
fsspec
rioxarray
xarray >= 0.18.0
xmlschema
include_package_data = True
[options.entry_points]
xarray.backends =
sentinel-1 = xarray_sentinel.xarray_backends:Sentinel1Backend
[mypy]
[mypy-dask]
ignore_missing_imports = True
[mypy-fsspec]
ignore_missing_imports = True
[mypy-pandas]
ignore_missing_imports = True
[mypy-xarray_sentinel.version]
ignore_missing_imports = True
[mypy-xmlschema]
ignore_missing_imports = True