Cut release 1.0.2 and upload to PyPi
This commit is contained in:
2
Makefile
2
Makefile
@@ -1,4 +1,4 @@
|
|||||||
VERSION=0.0.9
|
VERSION=1.0.2
|
||||||
VPPCFG:=vppcfg
|
VPPCFG:=vppcfg
|
||||||
PYTHON?=python3
|
PYTHON?=python3
|
||||||
PIP?=pip
|
PIP?=pip
|
||||||
|
|||||||
@@ -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
23
pyproject.toml
Normal 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"
|
||||||
Reference in New Issue
Block a user