blob: f600b8d60300d815cb5d4d877ac972611ac76bfe [file] [log] [blame]
Sapan Bhatia75d3b412017-03-29 21:10:29 +02001#!/usr/bin/env python
2
Sapan Bhatia29c47592017-07-23 21:32:44 -04003"""plyxproto xproto parser
4
5See:
6https://github.com/sb98052/plyprotobuf
7https://github.com/opencord/xos
8"""
9
10from setuptools import setup
Sapan Bhatia75d3b412017-03-29 21:10:29 +020011
Sapan Bhatia88d1aa32017-06-10 04:38:54 -070012setup(name='plyxproto',
Sapan Bhatia99669732017-07-25 19:19:14 -040013 version='2.2.0',
Sapan Bhatia29c47592017-07-23 21:32:44 -040014 description='xproto parser and processor',
15 author='Dusan Klinec (original protobuf parser), Sapan Bhatia (xproto extensions)',
16 author_email='sapan@opennetworking.org',
Sapan Bhatia75d3b412017-03-29 21:10:29 +020017 url='https://github.com/sb98052/plyprotobuf',
Sapan Bhatia29c47592017-07-23 21:32:44 -040018 license='Apache Software License',
19
20 classifiers=[
21 'Development Status :: 5 - Production/Stable',
22 'Intended Audience :: Developers',
23 'Topic :: Software Development :: Build Tools',
24 'License :: OSI Approved :: Apache Software License',
25 'Programming Language :: Python :: 2',
26 'Programming Language :: Python :: 2.7'
27 ],
28 keywords='xproto protobuf xos parser',
Sapan Bhatia88d1aa32017-06-10 04:38:54 -070029 packages=['plyxproto'],
Sapan Bhatiab7acc8c2017-03-29 21:17:25 +020030 install_requires=['ply']
Sapan Bhatia75d3b412017-03-29 21:10:29 +020031 )