aboutsummaryrefslogtreecommitdiffhomepage
path: root/templates/src/python
diff options
context:
space:
mode:
authorGravatar Masood Malekghassemi <soltanmm@users.noreply.github.com>2015-12-11 15:53:38 -0800
committerGravatar Masood Malekghassemi <soltanmm@users.noreply.github.com>2016-01-07 09:43:42 -0800
commit116982ea89e85c046fbc3a48b8829e3c4d4a5c1a (patch)
treee34b843840bddf9d42938f31e7c743b071b8e7f8 /templates/src/python
parentbbaad2a7e4d15977b86d5c8a0ca477ab3658f38c (diff)
Include core in Python distribution
Diffstat (limited to 'templates/src/python')
-rw-r--r--templates/src/python/grpcio/grpc_core_dependencies.py.template13
1 files changed, 13 insertions, 0 deletions
diff --git a/templates/src/python/grpcio/grpc_core_dependencies.py.template b/templates/src/python/grpcio/grpc_core_dependencies.py.template
new file mode 100644
index 0000000000..1ca5f7ad6c
--- /dev/null
+++ b/templates/src/python/grpcio/grpc_core_dependencies.py.template
@@ -0,0 +1,13 @@
+%YAML 1.2
+--- |
+ # AUTO-GENERATED FROM `$REPO_ROOT/templates/src/python/grpcio/grpc_core_dependencies.py.template`!!!
+
+ CORE_SOURCE_FILES = [
+ % for lib in libs:
+ % if lib.name in python_dependencies.transitive_deps:
+ % for src in lib.src:
+ '${src}',
+ % endfor
+ % endif
+ % endfor
+ ]