-
Notifications
You must be signed in to change notification settings - Fork 108
/
setup.py
27 lines (26 loc) · 1008 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
from setuptools import setup
setup(
name='protobuf-to-dict',
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).',
version='0.1.0',
author='Ben Hodgson',
author_email='[email protected]',
url='https://github.com/benhodgson/protobuf-to-dict',
license='Public Domain',
keywords=['protobuf', 'json', 'dict'],
install_requires=['protobuf>=2.3.0'],
package_dir={'':'src'},
py_modules=['protobuf_to_dict'],
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',
],
)