forked from elidhu/protobuf-converter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (27 loc) · 1.09 KB
/
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
from setuptools import setup
setup(
name='protobuf-converter',
description='A teeny Python library for creating Python dicts from '
'protocol buffers and the reverse. Useful as an intermediate step '
'before serialisation (e.g. to JSON). Forked from Ben Hodgson '
'https://github.com/benhodgson',
version='0.2.2',
author='Kevin Glasson',
author_email='[email protected]',
url='https://github.com/kevinglasson/protobuf-to-dict',
license='Public Domain',
keywords=['protobuf', 'json', 'dict', 'converter', 'decode'],
install_requires=['protobuf>=2.3.0'],
package_dir={'':'src'},
py_modules=['protobuf-converter'],
setup_requires=['protobuf>=2.3.0', 'nose>=1.0', 'coverage', 'nosexcover'],
test_suite = 'nose.collector',
classifiers=[
'Programming Language :: Python',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: Public Domain',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)