-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
48 lines (37 loc) · 1.08 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
36
37
38
39
40
41
42
43
44
45
46
47
48
from setuptools import setup, find_packages
setup(
name='protobufferize',
version='1.0',
license = 'GNU Affero General Public License v3.0',
author="pierlauro",
author_email="[email protected]",
description='Compile protobuffers with setuptools',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/pierlauro/protobufferize',
project_urls = {
'Bug Tracker': 'https://github.com/pierlauro/protobufferize/issues',
'Source': 'https://github.com/pierlauro/protobufferize',
},
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'
],
install_requires=[
"distro",
"grpcio-tools",
"mock",
"xmltodict",
],
python_requires='>=3.6',
keywords = 'protocolbuffer proto protobuf grpc setuptools protobufferize',
packages = find_packages(),
py_modules=['protobufferize'],
entry_points = {
"distutils.commands": [
"protobufferize = protobufferize:CompileProtoBuffers",
],
}
)