From 29559ecc8781c3a4cb5a1283126f269b0d60f7c2 Mon Sep 17 00:00:00 2001 From: Joe Ethier Date: Tue, 23 Jan 2018 10:13:34 -0800 Subject: [PATCH] Include unbuilt protos in the package not just the source repo. (#705) * Include unbuilt protos in the package not just the source repo. * Revert version bump for splitting into a separate PR. --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 5835de763..c9ebc7709 100644 --- a/setup.py +++ b/setup.py @@ -185,7 +185,8 @@ def run_tests(self): maintainer='Joe Ethier', maintainer_email='jethier@google.com', packages=find_packages(exclude='examples'), - package_data={'openhtf': ['output/web_gui/prebuilt/**/*.*', + package_data={'openhtf': ['output/proto/*.proto', + 'output/web_gui/prebuilt/**/*.*', 'output/web_gui/prebuilt/*.*']}, cmdclass={ 'build_proto': BuildProtoCommand,