I have the following folder structure:
- myproject/
--- __init__.py
--- stuff.py
- other-folder/
--- more-stuff.txt
pyproject.toml
MANIFEST.in
file.txt
How can I include the file.txt
and the other-folder
within the wheel? (Basically, I want to mimick the behaviour of pip install -e ...
without the -e
flag.)
I tried this config:
[tool.setuptools.packages.find]
where = ["."]
include = ["myproject"] # or myproject*
When installing, myproject
becomes the root folder though. The other-folder
and the file.txt
are missing. Both are included in MANIFEST.in
.
2