Skip to content

Commit 03fbb5a

Browse files
add __init__.py (#24)
* update * update * fix --------- Co-authored-by: TANG ZHIXIONG <zhixiong.tang@momenta.ai>
1 parent 74a1f42 commit 03fbb5a

File tree

1 file changed

+17
-3
lines changed

1 file changed

+17
-3
lines changed

build.py

+17-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from setuptools import setup, find_packages
77
88
name = "cubao_headers"
9-
version = "0.0.3"
9+
version = "0.0.4"
1010
1111
pattern = ["*"]
1212
@@ -18,8 +18,22 @@
1818
os.chdir('cubao_headers/include')
1919
path = f'__init__.py'
2020
Path(path).touch()
21-
path = f'../__init__.py'
22-
Path(path).touch()
21+
22+
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+
2337
packages = ['f"{name}"', 'f"{name}.include"']
2438
prefix = ' '
2539

0 commit comments

Comments
 (0)