-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
41 lines (37 loc) · 1.2 KB
/
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
37
38
39
40
41
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools", "wheel"]
[project]
name = "pywibeee"
dynamic = ["version", "readme"]
description = "Command line interface (CLI) for WiBeee (old Mirubee) meter"
authors = [{ name = "fquinto", email = "[email protected]" }]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Topic :: Home Automation",
"Topic :: System :: Monitoring",
"Topic :: System :: Shells",
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Developers",
]
keywords = ["homeautomation", "cli", "interface", "wibeee", "mirubeee",
"energy meter", "smart meter", "hass"]
dependencies = [
"xmltodict >= 0.13.0",
"requests",
"aiohttp",
"httpx",
]
requires-python = ">=3.7"
[project.urls]
Homepage = "https://github.com/fquinto/pywibeee"
[tool.setuptools.dynamic]
version = {attr = "pywibeee.__version__"}
readme = {file = ["README.rst"]}
[project.scripts]
pywibeee = "pywibeee.main:main"