-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
29 lines (27 loc) · 1001 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
from setuptools import setup, find_packages
readme = open('README.rst').read()
history = open('HISTORY.rst').read()
reqs = [x.strip() for x in open('requirements.txt').readlines()]
test_reqs = [x.strip() for x in open('requirements-tests.txt').readlines()]
setup(
name='protobuf_gen',
version='0.0.4',
author='Andrey Cizov',
author_email='[email protected]',
packages=find_packages(include=('protobuf_gen', 'protobuf_gen.*',)),
description='Python 3 type hinted protobuf binding generator',
keywords='',
url='https://github.com/andreycizov/python-protobuf-gen',
include_package_data=True,
long_description=readme,
install_requires=reqs,
test_suite='tests',
tests_require=test_reqs,
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Programming Language :: Python :: 3.6',
]
)