blob: 32c376d295cbd52ca93cdc0127a1bea29185d78c [file] [log] [blame]
John DeNisco68b0ee32017-09-27 16:35:23 -04001from setuptools import setup
2
3setup(name="vpp_config",
John DeNiscoc6b2a202017-11-01 12:37:47 -04004 version="17.10.5",
John DeNisco68b0ee32017-09-27 16:35:23 -04005 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'],
John DeNiscoc6b2a202017-11-01 12:37:47 -040012 install_requires=['pyyaml','netaddr'],
John DeNisco68b0ee32017-09-27 16:35:23 -040013 packages=['vpplib'],
14 scripts=['scripts/vpp-config'],
15 data_files=[('vpp/vpp-config/scripts', ['scripts/dpdk-devbind.py']),
16 ('vpp/vpp-config/configs', ['data/auto-config.yaml']),
17 ('vpp/vpp-config/dryrun/sysctl.d', ['data/80-vpp.conf.template']),
18 ('vpp/vpp-config/dryrun/default', ['data/grub.template']),
19 ('vpp/vpp-config/dryrun/vpp', ['data/startup.conf.template']),
20 ],
21 long_description="The VPP configuration utility can be used to easily configure VPP.",
22 )