forked from Dewberry/stormhub
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
82 lines (67 loc) · 1.92 KB
/
pyproject.toml
File metadata and controls
82 lines (67 loc) · 1.92 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 = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "stormhub"
dynamic = ["version"]
description = "Create catalogs, data, and metadata for hydrologic modeling in the cloud."
readme = "README.md"
maintainers = [
{ name = "Seth Lawler", email = "slawler@dewberry.com" }
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"fiona==1.9.6",
"geopandas==1.0.1",
"matplotlib==3.9.0",
"pystac==1.10.0",
"rasterio==1.3.10",
"requests==2.32.3",
"shapely==2.0.5",
"xarray==2024.11.0",
"rioxarray==0.18.1",
"s3fs==2024.12.0",
"zarr==2.18.3",
"dask==2025.1.0",
"numcodecs==0.13.1",
"scipy==1.15.2",
"dataretrieval==1.0.11",
"stac-geoparquet==0.7.0",
"hecdss==0.1.29"
]
[project.optional-dependencies]
dev = ["pre-commit", "ruff", "pytest", "pytest-cov", "pytest-json-report"]
docs = ["sphinx", "numpydoc", "sphinx_rtd_theme", "sphinx_design", "pydata-sphinx-theme", "sphinx-autodoc-typehints", "myst-parser"]
[project.urls]
repository = "https://github.com/dewberry/stormhub"
[project.scripts]
stormhub-server = "stormhub.server.serve:main"
[tool.pytest.ini_options]
pythonpath = "stormhub"
testpaths = "tests"
[tool.ruff.lint]
select = ["D"]
[tool.ruff.lint.pydocstyle]
convention = "numpy"
[tool.ruff]
line-length = 120
exclude = ["catalogs", "workflows"]
[tool.ruff.lint.per-file-ignores]
"stormhub/met/tests/**" = ["D"]
"docs/**" = ["D"]
[tool.setuptools.packages.find]
where = ["."]
include = ["stormhub*"]
[tool.setuptools.dynamic]
version = {attr = "stormhub.__version__"}
[tool.sphinx]
project = "stormhub"
author = "Seth Lawler"