We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b840e12 commit 84edd9fCopy full SHA for 84edd9f
local/openblas/__init__.py
@@ -1,6 +1,11 @@
1
-import os
+from pathlib import Path
2
+
3
from . import _init_openblas
4
5
6
+_HERE = Path(__file__).resolve().parent
7
8
9
# Use importlib.metadata to single-source the version
10
11
try:
@@ -17,3 +22,15 @@
17
22
__version__ = "0.0.0"
18
23
19
24
openblas_config = _init_openblas.get_config()
25
26
27
+def get_include_dir():
28
+ return str(_HERE / "include")
29
30
31
+def get_lib_dir():
32
+ return str(_HERE / "lib")
33
34
35
+def get_library():
36
+ return "openblas_python"
0 commit comments