We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 74a1f42 commit 03fbb5aCopy full SHA for 03fbb5a
build.py
@@ -6,7 +6,7 @@
6
from setuptools import setup, find_packages
7
8
name = "cubao_headers"
9
-version = "0.0.3"
+version = "0.0.4"
10
11
pattern = ["*"]
12
@@ -18,8 +18,22 @@
18
os.chdir('cubao_headers/include')
19
path = f'__init__.py'
20
Path(path).touch()
21
-path = f'../__init__.py'
22
-Path(path).touch()
+
+lines = '''import os
23
24
+DIR = os.path.abspath(os.path.dirname(__file__))
25
26
27
+def get_include() -> str:
28
+ installed_path = os.path.join(DIR, "include")
29
+ source_path = os.path.join(os.path.dirname(DIR), "include")
30
+ return installed_path if os.path.exists(installed_path) else source_path
31
+'''
32
33
+with open('../__init__.py', 'w') as f:
34
+ f.write(lines)
35
36
37
packages = ['f"{name}"', 'f"{name}.include"']
38
prefix = ' '
39
0 commit comments