requires-python value fixed in project file, docs url added

This commit is contained in:
Nicolas 2025-05-22 15:45:00 +02:00
parent aef55a8ca9
commit 2acffb90b5
1 changed files with 4 additions and 3 deletions

View File

@ -1,21 +1,22 @@
[project] [project]
name = "pyhoff" name = "pyhoff"
version = "1.1.0" version = "1.1.1"
authors = [ authors = [
{ name="Nicolas Kruse", email="nicolas.kruse@nonan.net" }, { 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" description = "The pyhoff package allows easy accessing of Beckhoff and Wago terminals with python over ModBus TCP"
readme = "README.md" readme = "README.md"
requires-python = ">=3.9" requires-python = ">=3.10"
license = "MIT"
classifiers = [ classifiers = [
"Programming Language :: Python :: 3", "Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent", "Operating System :: OS Independent",
] ]
[project.urls] [project.urls]
Homepage = "https://github.com/Nonannet/pyhoff" Homepage = "https://github.com/Nonannet/pyhoff"
Issues = "https://github.com/Nonannet/pyhoff/issues" Issues = "https://github.com/Nonannet/pyhoff/issues"
documentation = "https://nonannet.github.io/pyhoff/"
[build-system] [build-system]
requires = ["setuptools>=61.0", "wheel"] requires = ["setuptools>=61.0", "wheel"]