Poetry builds to include additional files
20-05-2025
- modules / packages use the
include
keyword - data files use the
include
keyword
[tool.poetry]
# ...
include = [
{ path = "tests", format = "sdist" },
{ path = "my_package/for_sdist_and_wheel.txt", format = ["sdist", "wheel"] }
]