-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
80 lines (73 loc) · 1.95 KB
/
pyproject.toml
File metadata and controls
80 lines (73 loc) · 1.95 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
# Copyright 2025 Lincoln Institute of Land Policy
# SPDX-License-Identifier: MIT
[project]
name = "wwdh_integrations"
version = "0.1.0"
description = "Mappings from various hydrological data sources to a standardized OGC EDR API format"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"aiohttp>=3.11.13",
"covjson-pydantic>=0.5.0",
"jsonpatch>=1.33",
"redis>=5.2.1",
"uvicorn>=0.34.0",
"geojson-pydantic>=1.2.0",
"opentelemetry-instrumentation-aiohttp-client>=0.51b0",
"opentelemetry-sdk>=1.30.0",
"opentelemetry-exporter-otlp>=1.30.0",
"orjson>=3.10.15",
"pygeoapi @ git+https://github.com/internetofwater/pygeoapi.git@b63ae0f6b56ab221a8cff83a1369632c10a7d907",
"msgspec>=0.19.0",
"flask-cors>=6.0.2",
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: GIS",
]
keywords = [
"cgs",
"pygeoapi",
"rise",
"snowtel",
"hydrology"
]
[dependency-groups]
# Dependencies needed for development and testing
dev = [
"pyright>=1.1.397",
"pytest-asyncio>=0.25.3",
"pytest-xdist>=3.6.1",
"radon>=6.0.1",
"pytest-cov>=6.0.0",
"pytest>=8.3.4",
"geopandas>=1.1.1",
]
# dependencies needed for external providers
deployment = [
"xarray",
"zarr<3",
"s3fs<=2023.6.0",
"gunicorn<24",
"gevent"
]
[tool.uv.workspace]
members = ["packages/*"]
[tool.pytest.ini_options]
# needed to prevent a deprecation warning; doesnt really affect any behavior
asyncio_default_fixture_loop_scope = "function"
addopts = "--strict-markers"
markers = [
"upstream: marks tests that test upstream behavior outside of our control"
]
[tool.coverage.run]
# don't include code in test files in coverage
omit = [
"**/*_test.py"
]