Import the Flowmetal project

This commit is contained in:
Reid 'arrdem' McKenzie 2021-04-09 01:38:49 -06:00
commit bf22e072e3
16 changed files with 1483 additions and 0 deletions
projects/flowmetal

10
projects/flowmetal/BUILD Normal file
View file

@ -0,0 +1,10 @@
package(default_visibility = ["//visibility:public"])
py_library(
name = "lib",
srcs = glob(["src/python/**/*.py"]),
imports = ["src/python"],
deps = [
py_requirement("prompt-toolkit"),
]
)