blob: e369a0cb4795b7bd55497797084e8b01ad9b4822 [file] [log] [blame]
Ole Troan5f9dcff2016-08-01 04:59:13 +02001try:
2 from setuptools import setup
3except ImportError:
4 from distutils.core import setup
Ole Troan6855f6c2016-04-09 03:16:30 +02005
6setup (name = 'vpp_papi',
Ole Troan5f9dcff2016-08-01 04:59:13 +02007 version = '1.1',
Ole Troan6855f6c2016-04-09 03:16:30 +02008 description = 'VPP Python binding',
9 author = 'Ole Troan',
10 author_email = 'ot@cisco.com',
11 #url = 'https://docs.python.org/extending/building',
Ole Troan5f9dcff2016-08-01 04:59:13 +020012 test_suite = 'tests',
Ole Troan6855f6c2016-04-09 03:16:30 +020013 packages=['vpp_papi'],
14 long_description = '''
15VPP Python language binding.
Ole Troan5f9dcff2016-08-01 04:59:13 +020016''',)