Bazel 在python上的应用
https://docs.bazel.build/versions/4.0.0/bazel-overview.html
一个google内部用的很不错的工具,旨在简化building process,把building process functionalize, 进而达到hermatic的效果(dependency 无丢失)。
快速,无误的编译对于开发团队至关重要。
如何使用Bazel?
Python
WORKSPACE
- project
-- main.py
-- lib.py
-- BUILD
The BUILD file specifies all the information needed to build the program.
```
bazel build main
bazel run main
bazel query "deps(main)" --notool_deps --noimplicit_deps
```