John DeNisco | 68b0ee3 | 2017-09-27 16:35:23 -0400 | [diff] [blame] | 1 | from setuptools import setup |
| 2 | |
| 3 | setup(name="vpp_config", |
John DeNisco | 4dc8397 | 2018-03-30 10:50:19 -0400 | [diff] [blame] | 4 | version="18.01.11", |
John DeNisco | 68b0ee3 | 2017-09-27 16:35:23 -0400 | [diff] [blame] | 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'], |
John DeNisco | c6b2a20 | 2017-11-01 12:37:47 -0400 | [diff] [blame] | 12 | install_requires=['pyyaml','netaddr'], |
John DeNisco | 68b0ee3 | 2017-09-27 16:35:23 -0400 | [diff] [blame] | 13 | 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']), |
John DeNisco | 9fa5cf4 | 2018-02-06 15:23:05 -0500 | [diff] [blame] | 17 | ('vpp/vpp-config/configs', ['data/cloud-config.iso']), |
| 18 | ('vpp/vpp-config/configs', ['data/iperf-centos.xml.template']), |
| 19 | ('vpp/vpp-config/configs', ['data/iperf-ubuntu.xml.template']), |
John DeNisco | 68b0ee3 | 2017-09-27 16:35:23 -0400 | [diff] [blame] | 20 | ('vpp/vpp-config/dryrun/sysctl.d', ['data/80-vpp.conf.template']), |
| 21 | ('vpp/vpp-config/dryrun/default', ['data/grub.template']), |
| 22 | ('vpp/vpp-config/dryrun/vpp', ['data/startup.conf.template']), |
| 23 | ], |
| 24 | long_description="The VPP configuration utility can be used to easily configure VPP.", |
| 25 | ) |