Metadata-Version: 2.4
Name: insight-proto
Version: 0.0.38
Summary: Insight Python Protobuf
Author-email: Ben Donnelly <ben@opentrace.com>
License-Expression: AGPL-3.0-only
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU Affero General Public License v3
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Typing :: Typed
Requires-Python: >3.7
Requires-Dist: protobuf==5.29.5
Provides-Extra: dev
Requires-Dist: build; extra == 'dev'
Requires-Dist: certifi>=2024.7.4; extra == 'dev'
Requires-Dist: grpcio-tools>=1.59.0; extra == 'dev'
Requires-Dist: grpcio>=1.59.0; extra == 'dev'
Requires-Dist: idna>=3.7; extra == 'dev'
Requires-Dist: mypy-protobuf>=3.5.0; extra == 'dev'
Requires-Dist: pygments>=2.15.0; extra == 'dev'
Requires-Dist: requests>=2.32.0; extra == 'dev'
Requires-Dist: setuptools>=70.0.0; extra == 'dev'
Requires-Dist: tqdm>=4.66.3; extra == 'dev'
Requires-Dist: twine; extra == 'dev'
Requires-Dist: urllib3>=2.2.2; extra == 'dev'
Requires-Dist: zipp>=3.19.1; extra == 'dev'
Description-Content-Type: text/markdown

# Language Independent Interface Types For INSIGHT

The proto files can be consumed as GIT submodules or copied and built directly in the consumer project.

The compiled files are published to central repositories (Maven, ...).

## Generate gRPC Client Libraries

To generate the raw gRPC client libraries, use `make gen-${LANGUAGE}`. Currently supported languages are:

* python
* golang

# Using local build

When testing you can build the python version locally using `make build-python`. This will build a version of 0.0.1-dev,
this can then be installed using `pip install`.

```bash
make build-python
pip install build/python

## or using the egg
pip install build/python/dist/insight_proto-0.0.1.dev0-py3-none-any.whl
```
Due to this being a dev build sometimes pip gets confused so you might need to run uninstall.
```bash
pip uninstall insight-proto
```

# Releasing

To release this we use GitHub Actions when a new release is tagged via GitHub.
