-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
45 lines (38 loc) · 1.43 KB
/
setup.cfg
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
[metadata]
name = codestare-msg-compiler
author = Maximilian Schmidt
author_email = ga97lul@mytum.de
url = https://github.com/saggitar/codestare-msg-compiler.git
description = "Distutils / Setuptools package to automatically compile and process protobuf files."
long_description = file: README.rst, CHANGELOG.rst, LICENSE.rst
keywords = protobuf, proto-plus
classifiers =
Programming Language :: Python :: 3
[options]
python_requires = >=3.7
package_dir =
= src
packages = find_namespace:
include_package_data = True
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
compile-proto = ubii.compiletools.compile:compile_proto [cli]
rewrite-proto = ubii.compiletools.compile:rewrite_proto [cli]
distutils.commands =
compile_python = ubii.compiletools.cmd:CompileProtoPython
compile_mypy = ubii.compiletools.cmd:CompileProtoMypy
compile_betterproto = ubii.compiletools.cmd:CompileBetterproto
compile_protoplus = ubii.compiletools.cmd:CompileProtoPlus
compile_proto = ubii.compiletools.cmd:CompileProto
rewrite_proto = ubii.compiletools.cmd:RewriteProto
generate_inits = ubii.compiletools.cmd:GenerateInits
build_py_proto = ubii.compiletools.cmd:UbiiBuildPy
egg_info.writers =
proto_package.txt = ubii.compiletools.cmd:write_package
[options.extras_require]
mypy = mypy; mypy-protobuf
betterproto = betterproto[compiler]
protoplus = codestare-proto-plus >= 0.0.3a1.dev4
cli = fire