-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
110 lines (97 loc) · 2.54 KB
/
Copy pathpyproject.toml
File metadata and controls
110 lines (97 loc) · 2.54 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
108
109
110
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "mapchete-eo"
dynamic = ["version"]
requires-python = ">=3.10"
description = "mapchete EO data reader"
readme = "README.rst"
license = "MIT"
authors = [
{ name = "Joachim Ungar", email = "joachim.ungar@eox.at" },
{ name = "Petr Sevcik", email = "petr.sevcik@eox.at" }
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: GIS",
]
dependencies = [
"click",
"pygeofilter",
"croniter",
"lxml",
"mapchete[complete]>=2025.10.0",
"opencv-python-headless",
"Pillow",
"pydantic",
"pystac[urllib3]>=1.12.2",
"pystac-client>=0.7.5",
"retry",
"rtree",
"scipy",
"tqdm",
"xarray",
]
[project.optional-dependencies]
docs = [
"sphinx>=8.0",
"sphinx-rtd-theme>=3.0.2",
"myst-parser",
]
test = [
"httpx",
"pytest",
"pytest-cov",
"pytest-lazy-fixtures",
"pytest-split"
]
[project.entry-points."mapchete.cli.commands"]
eo = "mapchete_eo.cli:eo"
[project.entry-points."mapchete.formats.drivers"]
eostac = "mapchete_eo.eostac"
sentinel2 = "mapchete_eo.platforms.sentinel2"
[project.entry-points."mapchete.processes"]
dtype_scale = "mapchete_eo.processes.dtype_scale"
eo_to_xarray = "mapchete_eo.processes.eo_to_xarray"
merge_rasters = "mapchete_eo.processes.merge_rasters"
[project.urls]
Homepage = "https://gitlab.eox.at/maps/mapchete_eo"
[tool.hatch.version]
path = "mapchete_eo/__init__.py"
[tool.hatch.build.targets.sdist]
include = [
"/mapchete_eo",
]
[tool.mypy]
ignore_missing_imports = true
[tool.coverage.run]
branch = true
relative_files = true
source = ["mapchete_eo"]
[tool.pytest.ini_options]
addopts = [
"--durations=20",
"--verbose",
"--splitting-algorithm", "least_duration",
"--durations-path", "tests/.test_duration",
"--nf",
"--cov=mapchete_eo",
"--cov-report=term-missing:skip-covered",
"--cov-append"
]
testpaths = ["tests"]
markers = [
"remote: marks tests which require acces to remote resources (deselect with '-m \"not remote\"')",
"use_cdse_test_env: enables CDSE S3 environment access",
]
[tool.pyproject2conda]
channels = ["conda-forge"]
[tool.pyproject2conda.dependencies]
opencv-python-headless = { skip = true, packages = "opencv" }