-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
26 lines (25 loc) · 932 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
from setuptools import setup
setup(
name='dict-to-protobuf',
description='A teeny Python library for creating protobuf dicts from '
'python dict. Useful when need to put dict on socket transmission.'
'You can not directly json a protobuf message object, it\'s not hashable'
,
version='0.0.2',
author='davy zhang',
author_email='[email protected]',
url='https://github.com/davyzhang/dict-to-protobuf',
license='Public Domain',
keywords=['protobuf', 'dict'],
install_requires=['protobuf>=2.3.0'],
package_dir={'':'src'},
py_modules=['dict_to_protobuf'],
classifiers=[
'Programming Language :: Python',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: Public Domain',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)