-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
36 lines (30 loc) · 943 Bytes
/
pyproject.toml
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
[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 = "[email protected]"}]
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.13 <3.14"
dependencies = []
[project.scripts]
enphase-proxy = "enphase_proxy.__main__:main"
[tool.poetry]
packages = [{include = "enphase_proxy", from = "src"}]
[tool.poetry.dependencies]
python = "^3.13 <3.14"
quart = "^0.20.0"
tenacity = "^9.0.0"
hypercorn = {extras = ["uvloop"], version = "^0.17.3"}
httpx = "^0.28.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.2.1"
pytest-cov = "^6.0.0"
pytest-mypy = "^0.10.3"
pytest-asyncio = "^0.25.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"