-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
108 lines (101 loc) · 3.34 KB
/
pyproject.toml
File metadata and controls
108 lines (101 loc) · 3.34 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
[project]
name = "earthcode"
version = "0.1.8"
description = "Tools for creating, validating, and searching EarthCODE Open Science Catalog metadata."
readme = "README.md"
requires-python = ">=3.12"
license = "MIT"
license-files = ["LICENSE"]
authors = [
{ name = "Krasen Samardzhiev", email = "krasensam@gmail.com" },
{ name = "Deyan Samardzhiev", email = "dean@lampata.co.uk" },
{ name = "Claudio Candelori", email = "claudio.candelori@cgi.com"},
]
keywords = [
"earth observation",
"earthcode",
"geospatial"
]
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering",
]
dependencies = [
"pystac>=1.14.1,<2",
"xarray>=2025.12.0,<2026",
"shapely>=2.1.2,<3",
"xstac>=1.2.0,<2",
"zarr>=3.1.5,<4",
"dask>=2025.12.0,<2026",
"netcdf4>=1.7.3,<2",
"bottleneck>=1.6.0,<2",
"rioxarray>=0.20.0,<0.21",
"geopandas>=1.1.2,<2",
"pyarrow>=23.0.0,<24",
"pylance>=2.0.1,<3",
"pillow>=10.3,<12",
"fsspec>=2025.10.0,<2026",
"jsonschema>=4.25.1,<5",
"numpy>=2.4.1,<3",
"onnxruntime>=1.23.2,<2",
"pandas>=3.0.0,<4",
"platformdirs>=4.5.0,<5",
"pydantic>=2.12.5,<3",
"requests>=2.32.5,<3",
"tokenizers>=0.22.2,<1",
"PyYAML>=6.0.3,<7",
]
[project.urls]
Homepage = "https://github.com/ESA-EarthCODE/earthcode-library"
Repository = "https://github.com/ESA-EarthCODE/earthcode-library"
Issues = "https://github.com/ESA-EarthCODE/earthcode-library/issues"
Documentation = "https://esa-earthcode.github.io/earthcode-library/"
[project.optional-dependencies]
dev = [
"jupyter-book>=1.0.4,<2",
"jupyterlab>=4.5.0,<5",
"papermill>=2.7.0,<3",
"pytest>=9.0.2,<10",
"pytest-cov>=7.0.0,<8",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build]
exclude = ["earthcode/models/**"]
artifacts = [
"earthcode/schemas/catalog.json",
"earthcode/schemas/collection.json",
"earthcode/schemas/contacts.json",
"earthcode/schemas/eo-missions/children.json",
"earthcode/schemas/eo-missions/parent.json",
"earthcode/schemas/experiments/children.json",
"earthcode/schemas/experiments/parent.json",
"earthcode/schemas/license.json",
"earthcode/schemas/osc.json",
"earthcode/schemas/products/children.json",
"earthcode/schemas/products/parent.json",
"earthcode/schemas/projects/children.json",
"earthcode/schemas/projects/parent.json",
"earthcode/schemas/records.json",
"earthcode/schemas/themes.json",
"earthcode/schemas/themes/children.json",
"earthcode/schemas/themes/parent.json",
"earthcode/schemas/variables/children.json",
"earthcode/schemas/variables/parent.json",
"earthcode/schemas/workflows/children.json",
"earthcode/schemas/workflows/parent.json",
"earthcode/generators/templates/experiment.yaml",
"earthcode/generators/templates/product.yaml",
"earthcode/generators/templates/project.yaml",
"earthcode/generators/templates/workflow.yaml",
]
[tool.hatch.build.targets.wheel]
packages = ["earthcode"]
[project.scripts]
earthcode_template_gen = "earthcode.generators.template_generator:main"
earthcode_stac_gen = "earthcode.generators.stac_generator:main"