Fix a few dependencies; clean up setup.py when moving to pyproject.toml

This commit is contained in:
Pim van Pelt
2025-11-09 05:24:29 +01:00
parent e106cbac47
commit b4652c6d93
2 changed files with 10 additions and 14 deletions

View File

@@ -9,21 +9,7 @@ with open(version_file) as f:
exec(f.read())
setup(
name="vppcfg",
version=__version__,
install_requires=[
"requests",
'importlib-metadata; python_version >= "3.8"',
"yamale",
"netaddr",
"vpp_papi",
],
packages=["vppcfg", "vppcfg/config", "vppcfg/vpp"],
entry_points={
"console_scripts": [
"vppcfg = vppcfg.vppcfg:main",
]
},
test_suite="vppcfg.config",
package_data={"vppcfg": ["*.yaml"]},
)