Metadata-Version: 2.1
Name: codestare-proto-plus
Version: 0.0.6.dev0
Summary: "Protoc plugin to compile proto plus python classes"
Home-page: https://github.com/saggitar/proto-plus-plugin.git
Author: Maximilian Schmidt
Author-email: ga97lul@mytum.de
Keywords: protobuf,proto-plus
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.7
License-File: LICENSE.rst

Plugin to generate proto-plus classes with protoc compiler.

Available plugin parameters [flags]:

* readable_imports  — import in the style "from ... import ..."
* relative_imports  — use relative imports instead of absolute
* generate_inits    — generate __init__.py files, always uses readable_imports to avoid circular imports
* quiet             — don't print compiler output

Available plugin parameters [keywords]:

* save_request — saves input as .json and binary file with specified name
* package — use this string as name for the __package__ module attributes

Example::

    protoc --proto-plus_out=generate_inits,relative_imports,readable_imports,package=mypackage,save_request=test_request:./output_dir schema.proto



MIT License
Copyright (c) 2021, Maximilian Schmidt

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
