-
-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (41 loc) · 1.01 KB
/
pyproject.toml
File metadata and controls
47 lines (41 loc) · 1.01 KB
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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "modbus4mqtt"
version = "1.0.0"
description = "A YAML-defined bidirectional Modbus to MQTT interface"
authors = [
{ name = "Travis Howse", email = "tjhowse@gmail.com" }
]
readme = "README.md"
license-files = ["LICENSE"]
requires-python = ">=3.11.0"
dependencies = [
"ruamel.yaml>=0.16.12",
"paho-mqtt>2.0.0,<3.0.0",
"pymodbus>=3.11.3,<4.0.0",
"click>=6.7",
"SungrowModbusTcpClient@git+https://github.com/rpvelloso/Sungrow-Modbus#egg=38946080d9be2850c962f1e8cb793bb09c872d6d",
"pytest-asyncio>=1.2.0",
]
[project.urls]
Homepage = "https://github.com/tjhowse/modbus4mqtt"
[project.optional-dependencies]
test = [
"flake8",
"pytest",
"codecov",
"pytest-cov>=7.0.0",
"black>=25.9.0",
"mypy>=1.18.2",
]
[project.scripts]
modbus4mqtt = "modbus4mqtt.modbus4mqtt:main"
[tool.setuptools.packages.find]
exclude = ["tests"]
[tool.mypy]
exclude = [
".venv",
"build",
]