Cut release 1.0.2 and upload to PyPi

This commit is contained in:
2025-11-08 22:43:48 +00:00
parent cb23d562eb
commit 2916432c34
4 changed files with 28 additions and 5 deletions

View File

@@ -1,4 +1,4 @@
VERSION=0.0.9 VERSION=1.0.2
VPPCFG:=vppcfg VPPCFG:=vppcfg
PYTHON?=python3 PYTHON?=python3
PIP?=pip PIP?=pip

View File

@@ -59,13 +59,13 @@ Please see vppcfg <command> -h for per-command arguments
## Documentation ## Documentation
Main user-focused documentation: Main user-focused documentation:
* [YAML Configuration Guide](docs/config-guide.md) * [YAML Configuration Guide](https://git.ipng.ch/ipng/vppcfg/src/branch/main/docs/config-guide.md)
* [User Guide](docs/user-guide.md) * [User Guide](https://git.ipng.ch/ipng/vppcfg/src/branch/main/docs/user-guide.md)
Developer deep-dives: Developer deep-dives:
* [Validation](https://ipng.ch/s/articles/2022/03/27/vppcfg-1.html) * [Validation](https://ipng.ch/s/articles/2022/03/27/vppcfg-1.html)
* [Path Planning](https://ipng.ch/s/articles/2022/04/02/vppcfg-2.html) * [Path Planning](https://ipng.ch/s/articles/2022/04/02/vppcfg-2.html)
* [Design - Reconciliation](docs/design.md) * [Design - Reconciliation](https://git.ipng.ch/ipng/vppcfg/src/branch/main/docs/design.md)
## Licensing ## Licensing

23
pyproject.toml Normal file
View File

@@ -0,0 +1,23 @@
[project]
name = "vppcfg"
version = "1.0.2"
authors = [
{ name="Pim van Pelt", email="pimg@ipng.ch" }
]
description = "A configuration tool for Vector Packet Processing"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
license = "Apache-2.0"
license-files = ["LICENSE"]
[project.urls]
Homepage = "https://git.ipng.ch/ipng/vppcfg"
[build-system]
requires = ["setuptools>=61.0.0"]
build-backend = "setuptools.build_meta"

View File

@@ -4,7 +4,7 @@ from setuptools import setup
setup( setup(
name="vppcfg", name="vppcfg",
version="0.0.9", version="1.0.2",
install_requires=[ install_requires=[
"requests", "requests",
'importlib-metadata; python_version >= "3.8"', 'importlib-metadata; python_version >= "3.8"',