5f9dcff39d
- Moved Python generator tool to tools directory - Added build-vpp-api Makefile target - Generator now only creates a Python representation of the .api the rest of the framework is in the vpp_papi script - Each plugin has its own namespace. - Plugin Python files are installed in vpp_papi_plugins for easy use inside the build tree. Change-Id: I272c83bb7e5d5e416bdbd8a790a3cc35c5a04e38 Signed-off-by: Ole Troan <ot@cisco.com>
17 lines
440 B
Python
17 lines
440 B
Python
try:
|
|
from setuptools import setup
|
|
except ImportError:
|
|
from distutils.core import setup
|
|
|
|
setup (name = 'vpp_papi',
|
|
version = '1.1',
|
|
description = 'VPP Python binding',
|
|
author = 'Ole Troan',
|
|
author_email = 'ot@cisco.com',
|
|
#url = 'https://docs.python.org/extending/building',
|
|
test_suite = 'tests',
|
|
packages=['vpp_papi'],
|
|
long_description = '''
|
|
VPP Python language binding.
|
|
''',)
|