forked from kellerza/pysma
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
40 lines (34 loc) · 1.01 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
# pyproject.toml
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pysma-plus"
version = "0.3.21.1"
description = "Library to interface SMA Devices via Speedwire, WebConnect, EnnexOS and Energy Meter Protocol"
readme = "README.md"
authors = [{ name = "Sven Bursch-Osewold", email = "[email protected]" },{ name = "Johann Kellerman" , email ="[email protected]"} ]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
dependencies = [
"aiohttp>3.3,<4",
"attrs>18",
"jmespath<2",
"dataclasses-struct>0.8",
"untangle>=1.2.1",
"pymodbus>=3.6.9",
"xmlschema>=3.3.0",
"pymodbus==3.7.4"
]
requires-python = ">=3.9"
#[tool.setuptools]
#include-package-data = true
[tool.setuptools.packages.find]
include = ["pysmaplus*"]
exclude = ["pysma/*"]
[project.urls]
Homepage = "https://github.com/littleyoda/pysma"