forked from TriggerMail/rules_pyz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWORKSPACE
18 lines (14 loc) · 762 Bytes
/
WORKSPACE
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
workspace(name = "com_bluecore_rules_pyz")
# Always load from the fully-qualified path inside this repository:
# Otherwise Bazel does not consider separate copies to be the same. See:
# https://github.com/bazelbuild/bazel/issues/3493
load("@com_bluecore_rules_pyz//rules_python_zip:rules_python_zip.bzl", "pyz_repositories")
pyz_repositories()
load("@com_bluecore_rules_pyz//pypi:pip.bzl", "pip_repositories")
pip_repositories()
load("@com_bluecore_rules_pyz//third_party/pypi:pypi_rules.bzl", "pypi_repositories")
pypi_repositories()
load("@com_bluecore_rules_pyz//pyz_image:docker.bzl", "pyz_rules_docker_repositories")
pyz_rules_docker_repositories()
load("@com_bluecore_rules_pyz//pyz_image:image.bzl", "pyz_image_repositories")
pyz_image_repositories()