You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With #47 it is now possible to get a SINGLE license file included in a built wheel by using setup.cfg
[metadata]
license_file = <some file>
This is however a severe limitation: this works for very simple licenses... but even for common license such as the Apache-2.0, you cannot include both the license file and the NOTICE file.
Beyond this, there could be other metafiles you want to include in a built wheel.
If they are not package-data, you could use data_files, but they will be installed in some generally unpleasant location.
We should generalize the notion of license-file to include more than one and include arbitrary files defined in a setup.cfg as metafiles.