-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (21 loc) · 900 Bytes
/
Copy pathsetup.py
File metadata and controls
26 lines (21 loc) · 900 Bytes
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="ProtoC Python Typing generator plugin",
version="0.2",
install_requires=['protobuf'],
scripts=['protoc-gen-python_grpc_typings', 'protoc-gen-python_typings'],
packages=['stubs_generator'],
# metadata for upload to PyPI
author="Miroslav Cibulka",
author_email="miroslav.cibulka@flowup.cz",
description="ProtoC code generator plugin",
license="MIT",
keywords="proto3 typing python library script",
url="https://github.com/Cmiroslaf/protoc-gen-python-typings", # project home page, if any
project_urls={
"Bug Tracker": "https://github.com/Cmiroslaf/protoc-gen-python-typings/issues",
"Documentation": "https://docs.example.com/HelloWorld/",
"Source Code": "https://code.example.com/HelloWorld/",
}
# could also include long_description, download_url, classifiers, etc.
)