-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (34 loc) · 750 Bytes
/
pyproject.toml
File metadata and controls
39 lines (34 loc) · 750 Bytes
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
[project]
name = "python-smarttub"
dynamic = ["version"]
description = "API to query and control hot tubs using the SmartTub system"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.13"
dependencies = [
"aiohttp>=3.9.1",
"inflection~=0.5.1",
"pyjwt>=2.10.0",
"python-dateutil>=2.8.1"
]
[dependency-groups]
dev = [
"pytest",
"pytest-asyncio",
"pytest-cov",
"aresponses",
"pre-commit",
"ruff",
"twine"
]
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "vcs"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
asyncio_mode = "auto"
[tool.hatch.build.targets.wheel]
packages = ["smarttub"]