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]
packages = [
{ include = "tiltpi" }
]
[project]
name = "tilt-pi"
version = "0.2.0"
description = "A Python client for interacting with the Tilt Pi API"
authors = [
{name = "Michael Heyman",email = "michaelheyman@users.noreply.github.com"}
]
license = {text = "MIT"}
readme = "README.md"
requires-python = ">=3.13"
keywords = ["tilt-pi", "tilt", "hydrometer", "brewing", "fermentation"]
dependencies = [
"aiohttp (>=3.11.18,<4.0.0)"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Home Automation",
"Topic :: System :: Hardware",
"Typing :: Typed",
]
[project.urls]
repository = "https://github.com/michaelheyman/tilt-pi"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.5"
pytest-asyncio = "^0.26.0"
ruff = "^0.11.10"
|