Tagged by CORD Jenkins version-tag job: 1345, for Gerrit patchset: 13234
VOL-1460 new semver for deps testing

Change-Id: I2198a1cf841710e7ebffa3443e99f84decdceebd
1 file changed
tree: 15f7d4c6228236c0c66c53598ca42391b1ed8c32
  1. .gitignore
  2. .gitreview
  3. MANIFEST.in
  4. Makefile
  5. README.md
  6. VERSION
  7. build_go_protos.sh
  8. go/
  9. protos/
  10. python/
  11. setup.py
  12. tox.ini
README.md

voltha-protos

Protobuf files used by VOLTHA.

Currently this is used to generate both go and python.

Protobuf definition files are located in protos/voltha_protos directory. This directory heirarchy and import scheme is required to allow the python code generated by the GRPC compiler to have the correct import paths.

NOTE: The protos/google/api directory has files copied from the Google APIs, and is only included for initial compilation of the VOLTHA protobuf files - these API's should be installed independently via either the python googleapis-common-protos package or the golang go-genproto repo.

Building locally

Python

make build

use dist/*.tar.gz for local imports

Using voltha-protos in your project

Python

Installation: pip install voltha-protos

Use: from voltha_protos import voltha_pb2

go

go get ...

Testing

make test will run tests for all languages.