blob: fa753ace5723d658909d65afed5d645388afbfad [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',
14 version='3.0.0',
15 description='xproto parser and processor',
16 author='Dusan Klinec (original protobuf parser), Sapan Bhatia (xproto extensions), Zack Williams (maintenance)',
17 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'])