forked from aarnphm/whispercpp
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWORKSPACE
39 lines (23 loc) · 918 Bytes
/
WORKSPACE
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
39
workspace(name = "com_github_aarnphm_whispercpp")
load("//rules:deps.bzl", "internal_deps")
internal_deps()
load("@com_github_bentoml_plugins//rules:deps.bzl", plugins_repositories = "internal_deps")
plugins_repositories()
load("@rules_python//python:repositories.bzl", "py_repositories", "python_register_multi_toolchains")
py_repositories()
load("@rules_python//python/pip_install:repositories.bzl", "pip_install_dependencies")
pip_install_dependencies()
load("@rules_python//python:pip.bzl", "pip_parse")
pip_parse(
name = "pypi",
requirements_lock = "//requirements:bazel-pypi.lock.txt",
)
load("@pypi//:requirements.bzl", "install_deps")
install_deps()
load("@pybind11_bazel//:python_configure.bzl", "python_configure")
python_configure(name = "local_config_python")
load("//rules:python.bzl", "declare_python_abi")
declare_python_abi(
name = "python_abi",
python_version = "3",
)