2025-02-16 22:49:16 +00:00
|
|
|
[project]
|
|
|
|
name = "pyhoff"
|
|
|
|
version = "1.0.0"
|
|
|
|
authors = [
|
|
|
|
{ name="Nicolas Kruse", email="nicolas.kruse@nonan.net" },
|
|
|
|
]
|
|
|
|
description = "The pyhoff package allows easy accessing of Beckhoff and Wago terminals with python over ModBus TCP"
|
|
|
|
readme = "README.md"
|
|
|
|
requires-python = ">=3.8"
|
|
|
|
classifiers = [
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"License :: OSI Approved :: MIT License",
|
|
|
|
"Operating System :: OS Independent",
|
|
|
|
]
|
|
|
|
|
|
|
|
[project.urls]
|
|
|
|
Homepage = "https://github.com/Nonannet/pyhoff"
|
|
|
|
Issues = "https://github.com/Nonannet/pyhoff/issues"
|
|
|
|
|
|
|
|
[build-system]
|
2025-02-17 13:57:03 +00:00
|
|
|
requires = ["setuptools>=61.0", "wheel"]
|
2025-02-16 22:49:16 +00:00
|
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
|
|
|
|
[tool.setuptools.packages.find]
|
|
|
|
where = ["src"]
|
|
|
|
|
|
|
|
[tool.pytest.ini_options]
|
|
|
|
minversion = "6.0"
|
|
|
|
addopts = "-ra -q"
|
|
|
|
testpaths = ["tests"]
|
|
|
|
pythonpath = ["src"]
|