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
|
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "romy"
version = "0.0.10"
authors = [
{ name="Manuel Dipolt", email="manuel.dipolt@robart.cc" },
]
description = "Python program and library to control Wi-Fi enabled ROMY vacuum cleaners"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"aiohttp>=3.8.0",
"async-timeout>=4.0;python_version<'3.11'",
]
license = {file = "LICENSE.md"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Operating System :: OS Independent",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Networking"
]
[project.urls]
"Homepage" = "https://github.com/xeniter/romy"
"Bug Tracker" = "https://github.com/xeniter/romy/issues"
[tool.setuptools.package-data]
"romy" = ["py.typed"]
|