-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (35 loc) · 1.17 KB
/
pyproject.toml
File metadata and controls
42 lines (35 loc) · 1.17 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
[project]
name = "enphase-proxy"
version = "0.0.0" # DO NOT CHANGE -- set during build
description = "Connect to your Enphase Envoy locally and proxy the API."
authors = [{name = "Paul Lockaby", email = "paul@paullockaby.com"}]
readme = "README.md"
license-files = ["LICENSE"]
requires-python = "^3.14 <3.15"
dynamic = ["dependencies"]
[project.scripts]
enphase-proxy = "enphase_proxy.__main__:main"
[tool.poetry]
packages = [{include = "enphase_proxy", from = "src"}]
# these are deprecated but necessary for dependabot
name = "enphase-proxy"
version = "0.0.0" # DO NOT CHANGE -- set during build
description = "Connect to your Enphase Envoy locally and proxy the API."
authors = ["Paul Lockaby <paul@paullockaby.com>"]
[tool.poetry.dependencies]
python = "^3.14 <3.15"
quart = "^0.20.0"
tenacity = "^9.0.0"
hypercorn = {extras = ["uvloop"], version = "^0.18.0"}
httpx = "^0.28.0"
[tool.poetry.group.dev.dependencies]
pytest = "^9.0.2"
pytest-cov = "^7.0.0"
pytest-mypy = "^1.0.1"
pytest-asyncio = "^1.0.0"
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
[build-system]
requires = ["poetry-core>=2.0"]
build-backend = "poetry.core.masonry.api"