Skip to content

Commit ee7776f

Browse files
committed
MAINT,BLD: Actually setup the module
1 parent 58b65bd commit ee7776f

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

meson.build

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,13 @@ py.extension_module(
3434
link_with: _linkto,
3535
cpp_args : _args,
3636
install: true,
37+
subdir: 'pyseams/',
3738
)
3839

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
from pyseams import _seams_core
1+
from pyseams import cyoda

0 commit comments

Comments
 (0)