tests: replace pycodestyle with black
[vpp.git] / extras / vpp_config / setup.py
1 from setuptools import setup
2
3 setup(
4     name="vpp_config",
5     version="20.05.1",
6     author="John DeNisco",
7     author_email="jdenisco@cisco.com",
8     description="VPP Configuration Utility",
9     license="Apache-2.0",
10     keywords="vppconfig",
11     url="https://wiki.fd.io/view/VPP",
12     py_modules=["vpp_config"],
13     install_requires=["distro", "pyyaml", "requests"],
14     extra_requires=["ipaddress; python_version < '3.3'"],
15     packages=["vpplib"],
16     entry_points={
17         "console_scripts": ["vpp-config=vpp_config:config_main"],
18     },
19     data_files=[
20         ("vpp/vpp-config/scripts", ["scripts/dpdk-devbind.py"]),
21         ("vpp/vpp-config/configs", ["data/auto-config.yaml"]),
22         ("vpp/vpp-config/configs", ["data/cloud-config.iso"]),
23         ("vpp/vpp-config/configs", ["data/iperf-centos.xml.template"]),
24         ("vpp/vpp-config/configs", ["data/iperf-ubuntu.xml.template"]),
25         ("vpp/vpp-config/dryrun/sysctl.d", ["data/80-vpp.conf.template"]),
26         ("vpp/vpp-config/dryrun/default", ["data/grub.template"]),
27         ("vpp/vpp-config/dryrun/vpp", ["data/startup.conf.template"]),
28     ],
29     long_description="The VPP configuration utility can be used to "
30     "easily configure VPP.",
31 )