-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (43 loc) · 1.31 KB
/
Copy pathpyproject.toml
File metadata and controls
49 lines (43 loc) · 1.31 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
[project]
name = "wallmonitor"
version = "0.5.0"
description = "Local-only monitoring and recording UI for a Tesla Wall Connector Gen 3"
readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT" }
authors = [{ name = "Fernando Gonzalez" }]
keywords = ["tesla", "wall-connector", "ev-charging", "monitoring", "self-hosted", "thermal-model"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Home Automation",
"Topic :: System :: Monitoring",
]
dependencies = [
"aiohttp>=3.13.5,<4",
"tesla-wall-connector>=1.2.0,<2",
]
[project.scripts]
wallmonitor = "wallmonitor.__main__:main"
[project.urls]
Homepage = "https://github.com/zebraengine/wallmonitor"
Repository = "https://github.com/zebraengine/wallmonitor"
Issues = "https://github.com/zebraengine/wallmonitor/issues"
[dependency-groups]
dev = [
"pytest>=9.1,<10",
"pytest-asyncio>=1.4,<2",
]
[build-system]
requires = ["uv_build>=0.11.6,<0.12"]
build-backend = "uv_build"
[tool.uv.build-backend]
module-root = ""
module-name = "wallmonitor"
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"