forked from benhodgson/protobuf-to-dict
-
Notifications
You must be signed in to change notification settings - Fork 30
/
setup.py
35 lines (33 loc) · 1.29 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
29
30
31
32
33
34
35
# -*- coding:utf-8 -*-
from setuptools import setup
with open("requirements.txt") as reqs_file:
reqs = reqs_file.readlines()
setup(
name='protobuf-to-dict',
description=('Ben Hodgson: 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). '
'Kapor: upgrade it to PB3 and PY3, rename it to protobuf3-to-dict'),
version='0.2.7',
author='Kapor Zhu',
author_email='[email protected]',
url='https://github.com/kaporzhu/protobuf-to-dict',
license='Public Domain',
keywords=['protobuf', 'json', 'dict'],
install_requires=reqs,
packages=['protobuf_to_dict'],
tests_require=['pytest'],
test_suite='nose.collector',
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: Public Domain',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)