2025-02-16 22:49:16 +00:00
|
|
|
[project]
|
|
|
|
name = "pyhoff"
|
2025-05-22 13:45:00 +00:00
|
|
|
version = "1.1.1"
|
2025-02-16 22:49:16 +00:00
|
|
|
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"
|
2025-05-22 13:45:00 +00:00
|
|
|
requires-python = ">=3.10"
|
|
|
|
license = "MIT"
|
2025-02-16 22:49:16 +00:00
|
|
|
classifiers = [
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"Operating System :: OS Independent",
|
|
|
|
]
|
|
|
|
|
|
|
|
[project.urls]
|
|
|
|
Homepage = "https://github.com/Nonannet/pyhoff"
|
|
|
|
Issues = "https://github.com/Nonannet/pyhoff/issues"
|
2025-05-22 13:45:00 +00:00
|
|
|
documentation = "https://nonannet.github.io/pyhoff/"
|
2025-02-16 22:49:16 +00:00
|
|
|
|
|
|
|
[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"]
|
|
|
|
|
2025-04-12 09:09:26 +00:00
|
|
|
[project.optional-dependencies]
|
|
|
|
dev = [
|
|
|
|
"pytest", "flake8", "mypy"
|
|
|
|
]
|
|
|
|
|
|
|
|
[tool.mypy]
|
|
|
|
files = ["src"]
|
|
|
|
strict = true
|
|
|
|
warn_return_any = true
|
|
|
|
warn_unused_configs = true
|
|
|
|
check_untyped_defs = true
|
|
|
|
no_implicit_optional = true
|
|
|
|
show_error_codes = true
|
|
|
|
|
2025-02-16 22:49:16 +00:00
|
|
|
[tool.pytest.ini_options]
|
|
|
|
minversion = "6.0"
|
|
|
|
addopts = "-ra -q"
|
|
|
|
testpaths = ["tests"]
|
|
|
|
pythonpath = ["src"]
|