Files
vppcfg/setup.py
2022-12-03 16:18:26 +00:00

23 lines
544 B
Python

"""vppcfg setuptools setup.py for pip and deb pkg installations"""
from setuptools import setup
setup(
name="vppcfg",
version="0.0.3",
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"]},
)