-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
50 lines (46 loc) · 1.71 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
42
43
44
45
46
47
48
49
50
[tool.poetry]
name = "Netio"
version = "1.0.13"
description = "Interface to control NETIO Products devices"
authors = ["Adam Verner <averner@netio.eu>"]
readme = "README.md"
repository = "https://github.com/netioproducts/PyNetio"
packages = [{include = "Netio"}]
license = "MIT"
keywords = ["netio", "netio products", "power control", "power management", "power monitoring", "power metering",
"power switching", "power switching device", "power switching devices", "power switching products",
"power switching products"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Natural Language :: English",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Home Automation",
"Topic :: System :: Hardware :: Hardware Drivers",
"Topic :: System :: Monitoring",
"Topic :: System :: Power (UPS)",
"Topic :: Utilities",
]
[tool.poetry.dependencies]
python = "^3.7"
requests = "^2.31.0"
pyopenssl = "^23.2.0"
[tool.poetry.group.test.dependencies]
pytest = "^7.4.2"
requests-mock = "^1.11.0"
setuptools = "^68.2.2"
[build-system]
requires = ["poetry-core>=1.2.0"]
build-backend = "poetry.core.masonry.api"
#define the scirpt to be runnable using CLI
[tool.poetry.scripts]
Netio = "Netio.cli:main"