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
|
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pyiskra"
version = "0.1.29"
description = "Python Iskra devices interface"
readme = "README.md"
requires-python = ">=3.8"
license = { text = "MIT" }
authors = [
{ name = "Iskra d.o.o.", email = "razvoj.mis@iskra.eu" },
]
maintainers = [
{ name = "Iskra", email = "razvoj.mis@iskra.eu" },
]
keywords = ["homeautomation", "iskra", "energy meter"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Home Automation",
]
dependencies = [
"aiohttp",
"pymodbus>=3.11.1",
]
[project.urls]
Homepage = "https://github.com/Iskramis/pyiskra"
Repository = "https://github.com/Iskramis/pyiskra"
Documentation = "https://github.com/Iskramis/pyiskra"
[tool.setuptools.packages.find]
where = ["."]
include = ["pyiskra*"]
|