From 2acffb90b5a71611d2792427b0b1643d87c98954 Mon Sep 17 00:00:00 2001 From: Nicolas Date: Thu, 22 May 2025 15:45:00 +0200 Subject: [PATCH] requires-python value fixed in project file, docs url added --- pyproject.toml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 3644baa..8762c6b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,21 +1,22 @@ [project] name = "pyhoff" -version = "1.1.0" +version = "1.1.1" 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.9" +requires-python = ">=3.10" +license = "MIT" 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" +documentation = "https://nonannet.github.io/pyhoff/" [build-system] requires = ["setuptools>=61.0", "wheel"]