-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
82 lines (76 loc) · 2.25 KB
/
Copy pathpyproject.toml
File metadata and controls
82 lines (76 loc) · 2.25 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
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "fastfuels-sdk"
description = "3D Fuels for Next Generation Fire Models"
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
requires-python = ">=3.11"
dynamic = ["version"]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering",
]
dependencies = [
"attrs>=22.2.0",
"geopandas",
"httpx>=0.23.0",
"numpy",
"pandas",
"pydantic>=2",
"python-dateutil>=2.9.0.post0",
"requests",
"scipy",
"urllib3>=2.1.0",
"xarray",
"zarr",
]
[project.urls]
Homepage = "https://github.com/silvxlabs/fastfuels-sdk-python"
"Bug Tracker" = "https://github.com/silvxlabs/fastfuels-sdk-python/issues"
[dependency-groups]
dev = [
"pytest",
"pre-commit",
"ipykernel",
"httpx>=0.23.0",
"attrs>=22.2.0",
"python-dateutil>=2.9.0.post0",
# reads exported GeoTIFFs to ground-truth Grid.to_numpy against the server
"rasterio",
]
docs = [
"mike>=2.2.0",
"mkdocs",
# pinned pre-0.6.3: 0.6.3 co-installs the properdocs mkdocs-fork and
# warns when run under mkdocs; revisit when the fork situation settles
"mkdocs-literate-nav==0.6.2",
# major pinned per the Material docs (semver; majors break config)
"mkdocs-material>=9.7,<10",
"mkdocstrings",
"mkdocstrings-python",
]
[tool.hatch.version]
source = "vcs"
[tool.hatch.build]
exclude = [
# Client regeneration scaffolding and design notes — repo-only, not for
# distribution. v2 ships as a beta preview; only its non-runtime files
# are excluded (mirroring v1's client_library excludes below).
"fastfuels_sdk/v2/*.sh",
"fastfuels_sdk/v2/*.md",
"fastfuels_sdk/v1/client_library/*.sh",
"fastfuels_sdk/v1/client_library/README.md",
"fastfuels_sdk/v1/client_library/api_spec.json",
"fastfuels_sdk/v1/client_library/openapi-generator-config.yaml",
]
[tool.hatch.build.targets.wheel]
packages = ["fastfuels_sdk"]