Replies: 1 comment 9 replies
-
This means it should be installed into the wheel or into site-packages as
You mean like .py files? You probably want to do this with |
Beta Was this translation helpful? Give feedback.
9 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
Say I have a directory structure, where there are some Cython files.
and say my
sktree/_lib/meson.build
file looks like this:where does this get installed? I tried adding an import statement like
from sktree._lib.sklearn.sklearn.tree._tree cimport DOUBLE
and it gives me an error:'sktree/_lib/sklearn/sklearn/tree/_tree.pxd' not found
.My next follow-up question is can we install any arbitrary nested files into a specific namespace, so it's importable from that namespace? E.g. to allow
from sktree._lib import stuff
?Beta Was this translation helpful? Give feedback.
All reactions