Movatterモバイル変換


[0]ホーム

URL:


Following system colour schemeSelected dark colour schemeSelected light colour scheme

Python Enhancement Proposals

PEP 566 – Metadata for Python Software Packages 2.1

Author:
Dustin Ingram <di at python.org>
BDFL-Delegate:
Daniel Holth
Discussions-To:
Distutils-SIG list
Status:
Final
Type:
Standards Track
Topic:
Packaging
Created:
01-Dec-2017
Python-Version:
3.x
Post-History:

Replaces:
345
Resolution:
Distutils-SIG message

Table of Contents

Important

This PEP is a historical document. The up-to-date, canonical spec,Core metadata specifications, is maintained on thePyPA specs page.

×

See thePyPA specification update process for how to propose changes.

Abstract

This PEP describes the changes between versions 1.2 and 2.1 of the coremetadata specification for Python packages. Version 1.2 is specified inPEP 345.

It also changes to the canonical source for field specifications to theCoreMetadata Specification reference document, which includes specifics of thefield names, and their semantics and usage.

Fields

The canonical source for the names and semantics of each of the supportedmetadata fields is theCore Metadata Specification document.

Fields marked with “(Multiple use)” may be specified multiple times in a singlePKG-INFO file. Other fields may only occur once in a PKG-INFO file. Fieldsmarked with “(optional)” are not required to appear in a valid PKG-INFO file;all other fields must be present.

New in Version 2.1

Description-Content-Type (optional)

A string stating the markup syntax (if any) used in the distribution’sdescription, so that tools can intelligently render the description.

Historically, tools like PyPI assume that a package’s description is formattedinreStructuredText (reST), andfall back on plain text if the description is not valid reST.

The introduction of this field allows PyPI to support additional types ofmarkup syntax, and not need to make this assumption.

The full specification for this field is defined in theCore MetadataSpecification.

Provides-Extra (optional, multiple use)

A string containing the name of an optional feature. Must be a valid Pythonidentifier. May be used to make a dependency conditional on whether theoptional feature has been requested.

This introduction of this field allows package installation tools (such aspip) to determine which extras are provided by a given package, and so thatpackage publication tools (such astwine) can check for issues withenvironment markers which use extras.

The full specification for this field is defined in theCore MetadataSpecification.

Changed in Version 2.1

Name

The specification for the format of this field is now identical to thedistribution name specification defined inPEP 508.

Description

In addition to theDescription header field, the distribution’sdescription may instead be provided in the message body (i.e., after acompletely blank line following the headers, with no indentation or otherspecial formatting necessary).

Version Specifiers

Version numbering requirements and the semantics for specifying comparisonsbetween versions are defined inPEP 440. Direct references as defined inPEP 440 are also permitted as an alternative to version specifiers.

FollowingPEP 508, version specifiers no longer need to be surrounded byparentheses in the fields Requires-Dist, Provides-Dist, Obsoletes-Dist orRequires-External, so e.g.requests>=2.8.1 is now a valid value.The recommended format is without parentheses, but tools parsing metadata shouldalso be able to handle version specifiers in parentheses. Further, public indexservers MAY prohibit strict version matching clauses or direct references inthese fields.

Usage of version specifiers is otherwise unchanged fromPEP 345.

Environment markers

Anenvironment marker is a marker that can be added at the end of afield after a semi-colon (“;”), to add a condition about the executionenvironment.

The environment marker format used to declare such a condition is defined inthe environment markers section ofPEP 508.

Usage of environment markers is otherwise unchanged fromPEP 345.

JSON-compatible Metadata

It may be necessary to store metadata in a data structure which does notallow for multiple repeated keys, such as JSON.

The canonical method to transform metadata fields into such a data structure isas follows:

  1. The original key-value format should be read withemail.parser.HeaderParser;
  2. All transformed keys should be reduced to lower case. Hyphens should bereplaced with underscores, but otherwise should retain all other characters;
  3. The transformed value for any field marked with “(Multiple-use”) should be asingle list containing all the original values for the given key;
  4. TheKeywords field should be converted to a list by splitting theoriginal value on commas;
  5. The message body, if present, should be set to the value of thedescription key.
  6. The result should be stored as a string-keyed dictionary.

Summary of Differences From PEP 345

  • Metadata-Version is now 2.1.
  • Fields are now specified via theCore Metadata Specification.
  • Added two new fields:Description-Content-Type andProvides-Extra
  • Acceptable values for theName field are now specified as perPEP 508.
  • Added canonical method of transformation into JSON-compatible data structure.

References

This document specifies version 2.1 of the metadata format.Version 1.0 is specified inPEP 241.Version 1.1 is specified inPEP 314.Version 1.2 is specified inPEP 345.Version 2.0, while not formally accepted, was specified inPEP 426.

Copyright

This document has been placed in the public domain.

Acknowledgements

Thanks to Alyssa Coghlan and Thomas Kluyver for contributing to this PEP.


Source:https://github.com/python/peps/blob/main/peps/pep-0566.rst

Last modified:2025-02-01 08:55:40 GMT


[8]ページ先頭

©2009-2025 Movatter.jp