aboutsummaryrefslogtreecommitdiffstats
path: root/vpp-api/python/setup.py
blob: e369a0cb4795b7bd55497797084e8b01ad9b4822 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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.
''',)