forked from sb98052/plyprotobuf
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
29 lines (25 loc) · 969 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/usr/bin/env python
"""plyxproto xproto parser
See:
https://github.com/sb98052/plyprotobuf
https://github.com/opencord/xos
"""
from setuptools import setup
setup(
name='plyxproto',
version='3.1.0',
description='xproto parser and processor',
author='Dusan Klinec (original protobuf parser), Sapan Bhatia (xproto extensions), Zack Williams (maintenance), Scott Baker (maintenance)',
author_email='[email protected]',
url='https://github.com/sb98052/plyprotobuf',
license='Apache Software License',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7'],
keywords='xproto protobuf xos parser',
packages=['plyxproto'],
install_requires=['ply'])