-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (68 loc) · 1.93 KB
/
Copy pathpyproject.toml
File metadata and controls
76 lines (68 loc) · 1.93 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
[project]
name = "stactools-met-office-deterministic"
version = "0.4.2"
description = "Python package for generating STAC metadata for the Met Office Deterministic Numerical Weather Prediction model"
readme = "README.md"
authors = [
{ name = "Henry Rodman", email = "henry@developmentseed.org" },
{ name = "Pete Gadomski", email = "pete.gadomski@gmail.com" },
]
keywords = ["stactools", "pystac", "catalog", "STAC"]
license = { text = "MIT" }
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
requires-python = ">=3.11"
dependencies = ["pystac>=1.10.1", "shapely>=2.1.2"]
[dependency-groups]
dev = [
"codespell>=2.4.1",
"mypy>=1.18.2",
"obstore>=0.8.2",
"pre-commit>=4.3.0",
"pystac[validation]>=1.10.1",
"pytest>=8.4.2",
"ruff>=0.14.1",
"types-shapely>=2.1.0.20250917",
]
docs = [
"dask>=2025.11.0",
"h5netcdf>=1.7.3",
"imageio>=2.37.2",
"ipykernel>=7.1.0",
"jinja2>=3.1.6",
"matplotlib>=3.10.7",
"mkdocs-material>=9.5.0",
"mkdocstrings[python]>=0.24.0",
"pyproj>=3.7.2",
"rustac>=0.9.0",
"xarray>=2025.11.0",
]
[tool.codespell]
skip = '*.ipynb'
[tool.hatch.build.targets.wheel]
packages = ["src/stactools"]
[tool.hatch.build.targets.sdist]
include = ["/src", "/tests", "/README.md", "/LICENSE", "/pyproject.toml"]
[tool.mypy]
explicit_package_bases = true
namespace_packages = true
show_error_codes = true
strict = true
mypy_path = "src"
files = "**/*.py"
[tool.ruff]
lint.select = ["E", "F", "I"]
[tool.uv]
default-groups = ["dev", "docs"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"