blob: 4903165221009114b01af65d0784bb484e4dbccf [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
Zack Williamsbe7f36d2018-02-02 11:37:11 -070012setup(
13 name='plyxproto',
Scott Bakerafe55322018-10-01 09:37:44 -070014 version='3.1.0.dev0',
Zack Williamsbe7f36d2018-02-02 11:37:11 -070015 description='xproto parser and processor',
Scott Bakerba36b492018-09-28 17:18:41 -070016 author='Dusan Klinec (original protobuf parser), Sapan Bhatia (xproto extensions), Zack Williams (maintenance), Scott Baker (maintenance)',
Zack Williamsbe7f36d2018-02-02 11:37:11 -070017 author_email='sapan@opennetworking.org',
18 url='https://github.com/sb98052/plyprotobuf',
19 license='Apache Software License',
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 keywords='xproto protobuf xos parser',
28 packages=['plyxproto'],
29 install_requires=['ply'])