-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
107 lines (96 loc) · 2.4 KB
/
pyproject.toml
File metadata and controls
107 lines (96 loc) · 2.4 KB
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
[build-system]
requires = ["setuptools >= 61.2.0"]
build-backend = "setuptools.build_meta"
[project]
name = "xarray-eopf"
dynamic = ["version", "readme"]
authors = [
{name = "Konstantin Ntokas (Brockmann Consult GmbH)"},
{name = "Norman Fomferra (Brockmann Consult GmbH)"}
]
description = "A backend implmentation for xarray that allows for analysis-ready reading of ESA EOPF data products."
keywords = [
"copernicus",
"esa",
"eopf",
"sentinel",
"xarray",
"zarr"
]
license = {text = "Apache-2.0"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
"Typing :: Typed",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
]
requires-python = ">=3.11"
dependencies = [
"aiohttp",
"dask",
"dask-image",
"flox",
"fsspec",
"numpy",
"pyproj",
"requests",
"rioxarray",
"s3fs",
"xarray>=2024.10",
"xcube-resampling>=0.3.2",
"zarr>=2.11,<3",
]
[project.optional-dependencies]
dev = [
# Build tools
"build",
"hatch",
"twine",
# Code Style / QA
"black",
"isort",
"ruff",
# Testing
"pytest",
"pytest-cov",
# Notebooks / Visualisation
"jupyterlab",
"matplotlib",
]
doc = [
"mkdocs",
"mkdocs-autorefs",
"mkdocs-material",
"mkdocstrings",
"mkdocstrings-python"
]
[project.entry-points."xarray.backends"]
eopf-zarr = "xarray_eopf.backend:EopfBackend"
[tool.setuptools.dynamic]
version = {attr = "xarray_eopf.__version__"}
readme = {file = "README.md", content-type = "text/markdown"}
[tool.setuptools.packages.find]
include = ["xarray_eopf*"]
[tool.flake8]
max-line-length = 88
[tool.isort]
profile = "black"
[tool.ruff]
# There is a problem with ruff when linting imports
exclude = ["**/*.ipynb"]
[project.urls]
Documentation = "https://eopf-sample-service.github.io/xarray-eopf"
Repository = "https://github.com/EOPF-Sample-Service/xarray-eopf"
Changelog = "https://github.com/EOPF-Sample-Service/xarray-eopf/blob/main/CHANGES.md"
Issues = "https://github.com/EOPF-Sample-Service/xarray-eopf/issues"