feat: add well-known legal files to build result automatically #8441
Labels
area/build-system
Related to PEP 517 packaging (see poetry-core)
area/core
Related to the poetry-core library
kind/feature
Feature requests/implementations
Feature Request
There are a handful of files that need to be added to builds result, for legal reasons.
This affects
wheel
andsdist
builds.The related files MUST be added to the package. the files MUST NOT install on the host system.
well-known legal files are:
LICENCE
/LICENSE
- obviouslyNOTICE
- some license texts, like Apache-2.0, explicitly state this exact file (name) as a optional source of custom license addendumCOPYING
- obviouslyAUTHORS
- obviouslyread also: https://wheel.readthedocs.io/en/stable/user_guide.html?#including-license-files-in-the-generated-wheel-file
They describe this already, and they also allow arbitrary file suffixes.
desired behavior
sdist
rootwheel
's.dist-info
directorysite-packages
current behavior
with poetry 1.6.1:
LICENSE
is detectedNOTICE
is not detectedCOPYING
is detected forwheel
onlyAUTHORS
is not detectedtried to add the needed files manually with
include
.This will also cause the files to be installed into
site-packages
, which MUST NOT happen.found a feature request to have the list of
legal_files
configurable, which made it never to public.But this issue is not about configuration but about auto-detect, one like other packaging systems have.
The text was updated successfully, but these errors were encountered: