-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (56 loc) · 1.67 KB
/
Copy pathpyproject.toml
File metadata and controls
64 lines (56 loc) · 1.67 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
[project]
name = "stactools-noaa-hrrr"
version = "0.1.2"
description = "NOAA High-Resolution Rapid Refresh (HRRR) stactools package"
readme = "README.md"
authors = [{ name = "Henry Rodman", email = "henry@developmentseed.org" }]
maintainers = [{ name = "Henry Rodman", email = "henry@developmentseed.org" }]
keywords = ["stactools", "pystac", "catalog", "STAC"]
license = { text = "Apache-2.0" }
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.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
requires-python = ">=3.10"
dependencies = [
"httpx>=0.27.0",
"pandas>=2.2.2",
"parse>=1.20.2",
"pystac>=1.12.0",
"rasterio>=1.3.10",
"stactools>=0.4.0",
]
[dependency-groups]
dev = [
"codespell>=2.4.1",
"jupyterlab>=4.2.7",
"mypy>=1.15.0",
"pre-commit>=3.8.0",
"pytest>=7.4.4",
"pytest-cov>=4.1.0",
"ruff==0.13.1",
]
[project.optional-dependencies]
docs = ["pystac>=1.12", "ipykernel~=6.25", "jinja2~=3.1"]
[project.urls]
Github = "https://github.com/stactools-packages/noaa-hrrr"
Issues = "https://github.com/stactools-packages/noaa-hrrr/issues"
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.mypy]
explicit_package_bases = true
namespace_packages = true
show_error_codes = true
strict = true
mypy_path = "src"
[tool.ruff]
[tool.setuptools.package-data]
"stactools.noaa_hrrr.data" = ["*.csv.gz"]