Appendix: Rejected Ideas
Abstract
This document contains a list of the alternative ideas to the ones proposed in PEP 639 with detailed explanations why they were rejected.
Core Metadata fields
Potential alternatives to the structure, content and deprecation of the Core Metadata fields specified in PEP 639.
Re-use the License
field
Following initial discussion, earlier versions of
PEP 639 proposed re-using the existing License
field, which tools would
attempt to parse as a SPDX license expression with a fallback to free text.
Initially, this would cause a warning and eventually it would be treated as an
error.
This would be more backwards-compatibile, allowed a smooth adoption of SPDX license expressions in the community, and avoided adding yet another license-related field.
Eventually, consensus was reached that a
dedicated License-Expression
field was a better approach.
The presence of this field unambiguously signals support for the SPDX
identifiers, without the need for complex heuristics, and allows tools to
easily detect invalid content.
Furthermore, it allows both the existing License
field and
the license classifiers to be easily deprecated,
with tools able to distinguish between packages conforming to PEP 639 or not,
and adapt their behavior accordingly.
Finally, it avoids changing the behavior of an existing metadata field,
and avoids tools having to guess the Metadata-Version
and field behavior
based on its value rather than merely its presence.
Distributions which already contain valid SPDX license expressions in the
License
fields will not automatically be recognized as such.
The migration is simple though, and PEP 639 provides
guidance on how this can be done automatically by tooling.
Re-Use the License
field with a value prefix
As an alternative to the previous, prefixing SPDX license expressions with,
e.g. spdx:
was suggested to reduce the ambiguity of re-using
the License
field. However, this effectively amounted to creating
a field within a field, and doesn’t address the downsides of
keeping the License
field. Namely, it still changes the behavior of an
existing metadata field, requires tools to parse its value
to determine how to handle its content, and makes the specification and
deprecation process more complex and less clean.
Projects currently using valid SPDX identifiers in the License
field won’t be automatically recognized, and require
about the same amount of effort to fix as in the case of introducing a new
field, namely changing a line in the
project’s source metadata. Therefore, it was rejected in favor of a new field.
Don’t make License-Expression
mutually exclusive
For backwards compatibility, the License
field and/or the license
classifiers could still be allowed together with the new
License-Expression
field, presumably with a warning. However, this
could easily lead to inconsistent
license metadata in no less than three different fields, which is
contrary to the goal of PEP 639 of making the licensing story
unambiguous. Therefore, with the community
consensus this idea was rejected.
Don’t deprecate existing License
field and classifiers
Several community members were concerned that deprecating the
existing License
field and classifiers would result in
much churn for package authors and raise the barrier to
entry for new ones, particularly developers seeking to
package their personal projects without caring
too much about the legal technicalities.
Indeed, every deprecation should be carefully considered relative to the
long-term
net benefit. At the minimum, this change shouldn’t make it more
difficult for a Python developer to share their work under
a license of their choice, and ideally improve the situation.
Following many rounds of discussion, the general consensus was in favor of deprecating the legacy means of specifying a license and in favor of “one obvious way to do it”. Not doing so would leave three different un-deprecated ways of specifying a license for a package, two of them ambiguous, inconsistently documented and out of date. This is more complex for tools to support indefinitely, resulting in a non-trivial maintenance cost.
Finally, for unmaintained packages, those using tools supporting older metadata versions, or those who choose not to provide license metadata, no changes are required regardless of the deprecation.
Don’t mandate validating new fields on PyPI
Previously, PEP 639 did not provide specific guidance
for PyPI (or other package indices) as to whether and how they
should validate the License-Expression
or License-File
fields,
nor how they should handle using them in combination with the deprecated
License
field or license classifiers. This simplifies the specification
and defers implementation on PyPI to a later PEP to minimize
disruption to package authors.
This was in place for an earlier draft of PEP 639 which didn’t separate
License-Expression
from the License
field. The validation would have
been difficult and backwards-incompatible, breaking existing packages.
With the current proposal, there was a clear consensus that
the new field should be validated from the start, guaranteeing that all
distributions uploaded to PyPI that declare Core Metadata version 2.4
or higher and have the License-Expression
field will have a valid
expression, such that PyPI and consumers of its packages and metadata
can rely upon to follow the specification here.
The same can be extended to the new License-File
field as well,
to ensure that it is valid and the legally required license files are
present. To be clear, this would not require that any uploaded distribution
have such metadata, only that if they choose to declare it per the
specification in PEP 639, it is assured to be valid.
Source metadata license
key
Alternative possibilities related to the license
key in the
pyproject.toml
project source metadata.
Add new subkeys to table
There were proposals to add various subkeys to the table.
Combining different types of metadata which require different handling,
adding new guidance regarding the subkeys mutual exclusivity and
the possibility to define some of them as dynamic would make the
transition harder and create more confusion rather than clarity for the users.
This approach has been rejected in favour of more flat pyproject.toml
design, clear mapping between pyproject.toml
keys and Core Metadata fields,
and increased readability of the separate keys.
Rejected proposals:
- add
expression
andfiles
subkeys to table - add an
expression
subkey instead of a string value - add a
type
key to treattext
as expression
Define a new top-level license-expression
key
An earlier version of PEP 639 defined a new, top-level license-expression
under the [project]
table,
rather than using the string value of the license
key.
This was seen as clearer for readers and writers,
in line with the goals of PEP 639.
While differences from existing tool formats (and Core Metadata field names) have precedent in PEP 621, repurposing an existing key to mean something different (and map to a different Core Metadata field), with distinct and incompatible syntax does not, and could cause ambiguity for readers and authors.
Also, per the project source metadata spec,
this would allow separately marking the [project]
keys
corresponding to the License
and License-Expression
metadata fields
as dynamic
,
avoiding a potential concern with back-filling the License
field
from the License-Expression
field as PEP 639 currently allows
without it as license
as dynamic
(which would not be possible, since they both map to the same top-level key).
However, community consensus favored using
the top-level string value of the existing license
key,
as reserved for this purpose by PEP 621:
A practical string value for the license key has been purposefully left out to allow for a future PEP to specify support for SPDX expressions (the same logic applies to any sort of “type” field specifying what license the file or text represents).
This is simpler for users to remember and type, avoids adding a new top-level key while taking advantage of an existing one, guides users toward using a license expression as the default, and follows what was envisioned in the original PEP 621.
Additionally, this allows cleanly deprecating the table values without deprecating the key itself, and makes them mutually exclusive without users having to remember and tools having to enforce it.
Finally, consistency with other tool formats and the underlying Core Metadata
was not a sufficient priority
to override the advantages of using the existing key,
and the dynamic
concerns were mostly mitigated by
not specifying legacy license to license expression conversion at build time,
explicitly specifying backfilling the License
field when not dynamic
,
and the fact that both fields are mutually exclusive,
so there is little practical need to distinguish which is dynamic.
Therefore, a top-level string value for license
was adopted for PEP 639,
as an earlier working draft had temporarily specified.
Source metadata license-files
key
Alternatives considered for the license-files
key in the
pyproject.toml
[project]
table, primarily related to the
path/glob type handling.
Define mutually exclusve paths
and globs
subkeys to license-files
A previous draft of the PEP specified mutually exclusive paths
and
globs
subkeys of the license-files
[project]
table key.
This was proposed to achieve the maximum clarity of the defined values for
both users and tools.
Allowing license files to be specified as literal paths would avoid edge cases,
such as those containing glob characters
(or those confusingly similar to them, as described in PEP 672).
However, this approach introduces an extra level of nesting - in the very same
way that PEP 639 removes from the license
key. This creates more burden
on project authors who need to disambiguate and choose one or the other
approach to specify their license files location. It was pointed out that
it is easily possible to incorrectly assume that paths also support
globs.
Therefore, it was decided against this approach in favor of a flat array value
which simplifies the specification and implementation,
and more closely matches the configuration format of existing tools.
The PEP recommends not to use other than alphanumerical symbols and dot
(.
) in the filenames to not create confusion
when interpreting glob patterns.
Only accept verbatim paths
Globs could be disallowed as values to the license-files
key in pyproject.toml
and only verbatim paths allowed.
This would ensure that all license files are explicitly specified,
found and included, and the source metadata
is completely static in the strictest sense of the term, without tools
having to inspect the rest of the project source files to determine exactly
what license files will be included and what the License-File
values
will be. This would also simplify the spec and tool implementation.
However, practicality beats purity here. Globs are already supported by many existing tools, and explicitly specifying the full path to every license file would be unnecessarily tedious for complex projects with vendored dependencies. More critically, it would make it much easier to accidentally miss a required legal file, creating the package illegal to distribute.
Tools can still determine the files to be included, based only on the glob patterns the user specified and the filenames in the package, without installing it, executing its code or even examining its files. And, of course, sdists, wheels and others will have the full static list of files specified in their distribution metadata.
Use a default value for license-files
if not specified
A previous draft of the PEP proposed a default value for detecting
license files in case the users have not declared any and not marked the key
as dynamic.
That value was defined as an array of globs:
["LICEN[CS]E*", "COPYING*", "NOTICE*", "AUTHORS*"]
However, this would create an exception among the existing metadata,
as no other key has got implicit defaults defined. Implicit values in
pyproject.toml keys are delegated to the dynamic
field,
which is specified as being calculated. Also, the values were chosen
arbitrarily, without a strong justification why they should pose a standard.
Must be marked dynamic to use defaults
With a restrictive
interpretation of PEP 621’s description of the dynamic
list it may
seem sensible to require the license-files
key to be marked as
dynamic
for the default glob patterns to be used, or alternatively
for license files to be matched and included at all.
However, this is just declaring a static, strictly-specified default value,
required to be used exactly by all conforming tools, similarly to any other set
of glob patterns the user themself may specify.
The resulting License-File
Core Metadata values
can be determined through inspecting a list of files in the source, without
executing code, or even inspecting file contents.
Moreover, even if this were not so, this interpretation would be backwards-incompatible with the existing format, and be inconsistent with the behavior with the existing tools. Further, this would create a serious risk of a large number of projects unknowingly no longer including legally mandatory license files, and is thus not a sane default.
Finally, not defining the default as dynamic allows authors to unambiguously
indicate when their build/packaging tools are going to be
handling the inclusion of license files themselves;
to do otherwise would defeat the purpose of the dynamic
list.
License file paths
Alternatives related to the paths and locations of license files in the source and built distributions.
Flatten license files in subdirectories
Previous drafts of PEP 639 didn’t specify how to handle the license files
in subdirectories. Currently, the Wheel and
Setuptools projects flatten all license files
into the .dist-info
directory without preserving the source subdirectory
hierarchy.
While this approach and matches existing ad hoc practice, it can result in name conflicts and license files clobbering others, with no defined behavior for how to resolve them, and leaving the package legally un-distributable without any clear indication that the specified license files have not been included.
Furthermore, this leads to inconsistent relative file paths for non-root
license files between the source, sdist and wheel, and prevents the paths
given in the “static” [project]
table metadata from being truly static.
Finally, the source directory structure often holds valuable information
about what the licenses apply to,
which is lost when flattening them and far from trivial to reconstruct.
To resolve this, the PEP now proposes reproducing the source directory
structure of the original
license files inside the .dist-info
directory. The only downside of this
approach is having a more nested .dist-info
directory. The following proposal rooting the license files under a licenses
subdirectory eliminates both name collisions and the clutter problem entirely.
Resolve name conflicts differently
Rather than preserving the source directory structure for license files
inside the .dist-info
directory, we could specify some other mechanism
for conflict resolution, such as pre- or appending the parent directory name
to the license filename, traversing up the tree until the name was unique,
to avoid excessively nested directories.
However, this would not address the path consistency issues, would require much more discussion and further complicate the specification. Therefore, it was rejected in favor of the more obvious solution of just preserving the source subdirectory layout, as many stakeholders have advocated for.
Dump directly in .dist-info
Previously, the included license files were stored directly in the top-level
.dist-info
directory of built wheels and installed projects.
However, this leads to a more cluttered .dist-info
directory
as opposed to separating
licenses into their own namespace. There is still a
risk of collision with custom license filenames
(e.g. RECORD
, METADATA
) in the .dist-info
directory, which
would require limiting the potential filenames used. Finally,
putting licenses into their own specified subdirectory would allow
humans and tools to correctly manipulate
all of them at once (such as in distro packaging, legal checks, etc.)
without having to reference each of their paths from the Core Metadata.
Therefore, the simplest and most obvious solution, as suggested by several
on the Wheel
and Setuptools implementation issues, is to root the license files
relative to a licenses
subdirectory of .dist-info
. This is simple
to implement and solves all the problems noted here, without significant
drawbacks relative to other more complex options.
It does make the specification a bit more complex, but implementation should remain equally simple. It does mean that wheels produced with following this change will have differently-located licenses than those prior, but as this was already true for those in subdirectories, and until PEP 639 there was no way of accessing these files programmatically, this should not pose significant problems in practice.
Add new licenses
category to wheel
Instead of defining a root license directory (licenses
) inside
the Core Metadata directory (.dist-info
) for wheels, we could instead
define a new category (and, presumably, a corresponding install scheme),
similar to the others currently included under .data
in the wheel archive,
specifically for license files, called (e.g.) licenses
. This was mentioned
by the wheel creator, and would allow installing licenses somewhere more
platform-appropriate and flexible than just the .dist-info
directory
in the site path.
However, at present, PEP 639 does not implement this idea, and it is
deferred to a future one. It would add significant complexity and friction
to PEP 639, being primarily concerned with standardizing existing practice
and updating the Core Metadata specification. Furthermore, doing so could
require modifying sysconfig
and the install schemes specified
therein, alongside Wheel, Installer and other tools, which would be a
non-trivial undertaking. While potentially slightly more complex for
repackagers, the current proposal still
ensures all license files are included in a single dedicated directory,
and thus should still
greatly improve the status quo in this regard.
In addition, this approach is not fully backwards compatible (since it isn’t transparent to tools that simply extract the wheel), is a greater departure from existing practice and would lead to more inconsistent license install locations from wheels of different versions. Finally, this would mean licenses would not be installed as close to their associated code, there would be more variability in the license root path across platforms and between built distributions and installed projects, accessing installed licenses programmatically would be more difficult, and a suitable install location and method would need to be created that would avoid name clashes.
Therefore, to keep PEP 639 in scope, the current approach was retained.
Name the subdirectory license_files
Both licenses
and license_files
have been suggested as potential
names for the root license directory inside .dist-info
of wheels and
installed projects. An initial draft of the PEP specified the former
due to being slightly clearer and consistent with the
name of the Core Metadata field (License-File
)
and the [project]
table key (license-files
).
However, the current version of the PEP adopts the licenses
name,
due to a general preference by the community for its shorter length
and the lack of a separator character.
Other ideas
Miscellaneous proposals, possibilities and discussion points that were ultimately not adopted.
Map identifiers to license files
This would require using a mapping, which would add extra complexity to how license are documented and add an additional nesting level.
A mapping would be needed, as it cannot be guaranteed that all expressions
(keys) have a single license file associated with them (e.g.
GPL with an exception may be in a single file) and that any expression
does not have more than one. (e.g. an Apache license LICENSE
and
its NOTICE
file, for instance, are two distinct files).
For most common cases, a single license expression and one or more license
files would be perfectly adequate. In the rarer and more complex cases where
there are many licenses involved, authors can still safely use the fields
specified here, just with a slight loss of clarity by not specifying which
text file(s) map to which license identifier (though each license identifier
has corresponding SPDX-registered
full license text), while not forcing the more complex mapping
on the large majority of users who do not need or want it.
We could of course have a data field with multiple possible value types but this could be a source of confusion. This is what has been done, for instance, in npm (historically) and in Rubygems (still today), and as result tools need to test the type of the metadata field before using it in code, while users are confused about when to use a list or a string. Therefore, this approach is rejected.
Map identifiers to source files
As discussed previously, file-level notices are out of scope for PEP 639,
and the existing SPDX-License-Identifier
convention can
already be used if this is needed without further specification here.
Don’t freeze compatibility with a specific SPDX version
PEP 639 could omit specifying a specific SPDX specification version, or one for the list of valid license identifiers, which would allow more flexible updates as the specification evolves.
However, serious concerns were expressed about a future SPDX update breaking compatibility with existing expressions and identifiers, leaving current packages with invalid metadata per the definition in PEP 639. Requiring compatibility with a specific version of these specifications here and a PEP or similar process to update it avoids this contingency, and follows the practice of other packaging ecosystems.
Therefore, it was decided to specify a minimum version and require tools to be compatible with it, while still allowing updates so long as they don’t break backward compatibility. This enables tools to immediate take advantage of improvements and accept new licenses balancing flexibility and compatibility.
Don’t allow custom license identifiers
A previous draft of this PEP specified the possibility to use only two
custom identifiers: LicenseRef-Public-Domain
and LicenseRef-Proprietary
to handle the cases where projects have a license, but there is not a
recognized SPDX license identifier for it.
The custom identifiers cannot be checked for correctness and users may think
they always have to prepend identifiers with LicenseRef
.
This would lead to tools producing invalid metadata.
However, Python packages are produced in many open and close environments, where it may be impossible to declare the license using only the small subset of the allowed custom identifiers and where, for various reasons, it’s not possible to add the license to the SPDX license list.
The custom license identifiers are explicitly allowed and described in the official SPDX specification and they can be syntactically validated although not case-normalized.
Therefore, with acknowledgement that the custom identifiers can’t be fully validated and may contain mistakes, it was decided to allow them in line with the official SPDX specification.
Different licenses for source and binary distributions
As an additional use case, it was asked whether it was in scope for PEP 639 to handle cases where the license expression for a binary distribution (wheel) is different from that for a source distribution (sdist), such as in cases of non-pure-Python packages that compile and bundle binaries under different licenses than the project itself. An example cited was PyTorch, which contains CUDA from Nvidia, which is freely distributable but not open source.
However, given the inherent complexity here and a lack of an obvious mechanism to do so, the fact that each wheel would need its own license information, lack of support on PyPI for exposing license info on a per-distribution archive basis, and the relatively niche use case, it was determined to be out of scope for PEP 639, and left to a future PEP to resolve if sufficient need and interest exists and an appropriate mechanism can be found.