(self)
| 52 | class BuildPy(build_py): |
| 53 | |
| 54 | def run(self): |
| 55 | for proto_file in proto_files(PROTO_DIR): |
| 56 | compile_proto(proto_file, python_out=SETUP_DIR, proto_path=SETUP_DIR) |
| 57 | with open(os.path.join(PROTO_DIR, '__init__.py'), 'a') as f: |
| 58 | pass |
| 59 | build_py.run(self) |
| 60 | |
| 61 | |
| 62 | setup( |
nothing calls this directly
no test coverage detected