Created
April 4, 2018 17:45
-
-
Save c4urself/eb7f05a45103f46f20203f5ad272a883 to your computer and use it in GitHub Desktop.
Bazel Talk 01
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pex_library( | |
name = "rubberband", | |
srcs = glob(["rubberband/**/*.py"]), | |
reqs = [ | |
third_party_req("lazy"), | |
third_party_req("tornado"), | |
third_party_req("ujson"), | |
], | |
deps = [ | |
"//pkg-mon:mon", | |
"//pkg-swissarmy:swissarmy", | |
], | |
visibility = ["//visibility:public"], | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment