Files
vppcfg/pyproject.toml

27 lines
606 B
TOML

[project]
name = "vppcfg"
dynamic = ["version"]
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"
[tool.setuptools.dynamic]
version = {attr = "vppcfg._version.__version__"}