Files
vppcfg/setup.py
Ray Kinsella f5c31c7f39 build: enable unit tests as part of build
Enabling the unit tests as part of the pip and debian builds.

Signed-off-by: Ray Kinsella <mdr@ashroe.eu>
2022-07-13 13:05:55 +01:00

24 lines
566 B
Python

"""vppcfg setuptools setup.py for pip and deb pkg installations"""
from setuptools import setup
setup(
name="vppcfg",
version="0.0.1",
install_requires=[
"requests",
'importlib-metadata; python_version == "3.8"',
"yamale",
"netaddr",
"ipaddress",
"vpp_papi",
],
packages=["vppcfg", "vppcfg/config", "vppcfg/vpp"],
entry_points={
"console_scripts": [
"vppcfg = vppcfg.vppcfg:main",
]
},
test_suite="vppcfg.config",
package_data={"vppcfg": ["*.yaml"]},
)