-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (58 loc) · 2.11 KB
/
Copy pathpyproject.toml
File metadata and controls
61 lines (58 loc) · 2.11 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
[project]
name = "whurl"
version = "0.1.3"
description = "Which Hydro URL? - Python API wrapper for Hilltop Server"
authors = [
{name = "nicmostert",email = "nicolas.mostert@horizons.govt.nz"}
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules"
]
license = "GPL-3.0-or-later"
readme = "README.md"
requires-python = ">=3.11,<4.0"
dependencies = [
"pytest-mock (>=3.15.0,<4.0.0)",
"httpx (>=0.28.1,<0.29.0)",
"pydantic (>=2.11.9,<3.0.0)",
"lxml (>=6.0.1,<7.0.0)",
"pandas (>=2.3.2,<3.0.0)",
"python-dotenv (>=1.1.1,<2.0.0)",
"isodate (>=0.7.2,<0.8.0)",
"xmltodict (>=1.0.0,<2.0.0)",
"certifi (>=2025.8.3,<2026.0.0)",
"pyyaml (>=6.0.2,<7.0.0)",
"numpy (>=1.26.4,<2.0.0)",
"fastapi (>=0.116.1,<0.117.0)",
"uvicorn (>=0.35.0,<0.36.0)",
"pytest-benchmark (>=5.1.0,<6.0.0)",
"anyio (>=4.10.0,<5.0.0)",
"pytest-asyncio (>=1.2.0,<2.0.0)",
"h2 (>=4.3.0,<5.0.0)",
"pytest-cov (>=7.0.0,<8.0.0)",
"poetry (>=2.2.1,<3.0.0)",
"pytest (>=9.0.3,<10.0.0)",
"pytest-httpx (>=0.36.2,<0.37.0)"
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
asyncio_mode = "auto"
markers = [
"slow: marks tests as slow (deselect as '-m \"not slow\"')",
"remote: marks tests as remote (deselect as '-m \"not remote\"')",
"update: updates the api response data cache (deselect as '-m \"not update\"')",
"unit: marks tests as unit tests (deselect as '-m \"not unit\"')",
"integration: marks tests as integration tests (deselect as '-m \"not integration\"')",
"performance: marks tests as performance tests (deselect as '-m \"not performance\"')",
]
addopts = "--cov=whurl --cov-report=term-missing --mode=all --update"