Replies: 1 comment
-
See issue #1517 for full discussion |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am trying to deploy a wheel of a Python package, and the stub file I have in the root of my package is not getting copied to the produced wheel when I use the
--manifest
flag withmaturin develop
. Here's an example:I have the following directory structure for the package
maturin_manifest
:With the following
pyproject.toml
:When I perform the command
maturin develop -m rust/Cargo.toml
the stub file is not detected:But it is when I perform
maturin develop
inside therust
directory it does work.Additionally, when I try and simulate building this package from another, say as a dependency in
setup.cfg
withpip install .
, the same thing occurs, and the stub file does not exist in the library directory.Beta Was this translation helpful? Give feedback.
All reactions