37 lines
786 B
TOML
37 lines
786 B
TOML
[project]
|
|
name = "vppcfg"
|
|
dynamic = ["version"]
|
|
dependencies = [
|
|
"requests",
|
|
"importlib-metadata; python_version >= '3.8'",
|
|
"yamale",
|
|
"netaddr",
|
|
"vpp_papi",
|
|
]
|
|
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.scripts]
|
|
vppcfg = "vppcfg.vppcfg:main"
|
|
|
|
[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__"}
|