-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (37 loc) · 1.1 KB
/
pyproject.toml
File metadata and controls
42 lines (37 loc) · 1.1 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
[tool.poetry]
name = "letpot"
version = "0.1.0"
description = "Asynchronous Python client for LetPot hydroponic gardens and watering systems."
authors = ["Joris Pelgröm <joris.pelgrom@gmail.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/jpelgrom/python-letpot"
classifiers = [
"Development Status :: 3 - Alpha",
"Framework :: AsyncIO",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: 3",
]
[tool.poetry.dependencies]
python = "^3.12"
aiohttp = "^3.11"
aiomqtt = "^2.0"
[tool.poetry.group.dev.dependencies]
ruff = "0.15.9"
pytest = "9.0.3"
pytest-asyncio = "1.3.0"
pytest-cov = "7.1.0"
mypy = "1.20.0"
freezegun = "1.5.5"
[tool.poetry.urls]
Changelog = "https://github.com/jpelgrom/python-letpot/releases"
Issues = "https://github.com/jpelgrom/python-letpot/issues"
[tool.pytest.ini_options]
asyncio_mode = "auto"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"