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 58b65bd commit ee7776fCopy full SHA for ee7776f
meson.build
@@ -34,5 +34,13 @@ py.extension_module(
34
link_with: _linkto,
35
cpp_args : _args,
36
install: true,
37
+ subdir: 'pyseams/',
38
)
39
40
+# pyseams main package
41
+py.install_sources([
42
+ 'pyseams/__init__.py',
43
+ ],
44
+ pure: false, # install next to compiled extension
45
+ subdir: 'pyseams/'
46
+)
pyseams/__init__.py
@@ -1 +1 @@
1
-from pyseams import _seams_core
+from pyseams import cyoda
0 commit comments