forked from bazelbuild/rules_python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
internal_setup.bzl
38 lines (32 loc) · 855 Bytes
/
internal_setup.bzl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
"""Setup for rules_python tests, tools, and examples."""
load(
"@examples_boto//:requirements.bzl",
_boto_install = "pip_install",
)
load(
"@examples_extras//:requirements.bzl",
_extras_install = "pip_install",
)
# Imports for examples.
load(
"@examples_helloworld//:requirements.bzl",
_helloworld_install = "pip_install",
)
load(
"@examples_version//:requirements.bzl",
_version_install = "pip_install",
)
# Requirements for building our piptool.
load(
"@piptool_deps//:requirements.bzl",
_piptool_install = "pip_install",
)
def rules_python_internal_setup():
"""Setup for rules_python tests, tools, and examples."""
# Requirements for building our piptool.
_piptool_install()
# Imports for examples.
_helloworld_install()
_version_install()
_boto_install()
_extras_install()