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