2017-12-05 01:42:10 -05:00
|
|
|
|
PEP: 566
|
2018-01-22 19:14:49 -05:00
|
|
|
|
Title: Metadata for Python Software Packages 2.1
|
2017-12-05 01:42:10 -05:00
|
|
|
|
Version: $Revision$
|
|
|
|
|
Last-Modified: $Date$
|
2019-07-20 07:35:07 -04:00
|
|
|
|
Author: Dustin Ingram <di@python.org>
|
2017-12-06 09:28:38 -05:00
|
|
|
|
BDFL-Delegate: Daniel Holth
|
2017-12-05 01:42:10 -05:00
|
|
|
|
Discussions-To: distutils-sig <distutils-sig at python.org>
|
2018-03-04 00:28:10 -05:00
|
|
|
|
Status: Final
|
2017-12-05 01:42:10 -05:00
|
|
|
|
Type: Standards Track
|
|
|
|
|
Content-Type: text/x-rst
|
2021-02-09 11:54:26 -05:00
|
|
|
|
Created: 01-Dec-2017
|
2017-12-05 01:42:10 -05:00
|
|
|
|
Python-Version: 3.x
|
|
|
|
|
Post-History:
|
|
|
|
|
Replaces: 345
|
2018-02-23 22:26:35 -05:00
|
|
|
|
Resolution: https://mail.python.org/pipermail/distutils-sig/2018-February/032014.html
|
2017-12-05 01:42:10 -05:00
|
|
|
|
|
|
|
|
|
Abstract
|
|
|
|
|
========
|
|
|
|
|
|
2018-01-22 19:14:49 -05:00
|
|
|
|
This PEP describes the changes between versions 1.2 and 2.1 of the core
|
2017-12-05 01:42:10 -05:00
|
|
|
|
metadata specification for Python packages. Version 1.2 is specified in PEP
|
|
|
|
|
345.
|
|
|
|
|
|
|
|
|
|
It also changes to the canonical source for field specifications to the `Core
|
|
|
|
|
Metadata Specification`_ reference document, which includes specifics of the
|
|
|
|
|
field names, and their semantics and usage.
|
|
|
|
|
|
|
|
|
|
Fields
|
|
|
|
|
======
|
|
|
|
|
|
|
|
|
|
The canonical source for the names and semantics of each of the supported
|
|
|
|
|
metadata fields is the `Core Metadata Specification`_ document.
|
|
|
|
|
|
|
|
|
|
Fields marked with "(Multiple use)" may be specified multiple times in a single
|
|
|
|
|
PKG-INFO file. Other fields may only occur once in a PKG-INFO file. Fields
|
|
|
|
|
marked with "(optional)" are not required to appear in a valid PKG-INFO file;
|
|
|
|
|
all other fields must be present.
|
|
|
|
|
|
2018-01-22 19:14:49 -05:00
|
|
|
|
New in Version 2.1
|
2017-12-05 01:42:10 -05:00
|
|
|
|
------------------
|
|
|
|
|
|
|
|
|
|
Description-Content-Type (optional)
|
|
|
|
|
:::::::::::::::::::::::::::::::::::
|
|
|
|
|
|
|
|
|
|
A string stating the markup syntax (if any) used in the distribution's
|
|
|
|
|
description, so that tools can intelligently render the description.
|
|
|
|
|
|
|
|
|
|
Historically, tools like PyPI assume that a package's description is formatted
|
|
|
|
|
in `reStructuredText (reST)
|
|
|
|
|
<http://docutils.sourceforge.net/docs/ref/rst/restructuredtext.html>`_, and
|
|
|
|
|
fall back on plain text if the description is not valid reST.
|
|
|
|
|
|
|
|
|
|
The introduction of this field allows PyPI to support additional types of
|
|
|
|
|
markup syntax, and not need to make this assumption.
|
|
|
|
|
|
|
|
|
|
The full specification for this field is defined in the `Core Metadata
|
|
|
|
|
Specification`_.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Provides-Extra (optional, multiple use)
|
|
|
|
|
:::::::::::::::::::::::::::::::::::::::
|
|
|
|
|
|
|
|
|
|
A string containing the name of an optional feature. Must be a valid Python
|
|
|
|
|
identifier. May be used to make a dependency conditional on whether the
|
|
|
|
|
optional feature has been requested.
|
|
|
|
|
|
2017-12-06 10:41:52 -05:00
|
|
|
|
This introduction of this field allows package installation tools (such as
|
2017-12-05 01:42:10 -05:00
|
|
|
|
``pip``) to determine which extras are provided by a given package, and so that
|
|
|
|
|
package publication tools (such as ``twine``) can check for issues with
|
|
|
|
|
environment markers which use extras.
|
|
|
|
|
|
|
|
|
|
The full specification for this field is defined in the `Core Metadata
|
|
|
|
|
Specification`_.
|
|
|
|
|
|
2018-01-22 19:14:49 -05:00
|
|
|
|
Changed in Version 2.1
|
2017-12-05 01:42:10 -05:00
|
|
|
|
----------------------
|
|
|
|
|
|
|
|
|
|
Name
|
|
|
|
|
::::
|
|
|
|
|
|
|
|
|
|
The specification for the format of this field is now identical to the
|
|
|
|
|
distribution name specification defined in PEP 508.
|
|
|
|
|
|
2018-02-18 03:02:14 -05:00
|
|
|
|
Description
|
|
|
|
|
:::::::::::
|
|
|
|
|
|
|
|
|
|
In addition to the ``Description`` header field, the distribution's
|
|
|
|
|
description may instead be provided in the message body (i.e., after a
|
|
|
|
|
completely blank line following the headers, with no indentation or other
|
|
|
|
|
special formatting necessary).
|
|
|
|
|
|
2017-12-05 01:42:10 -05:00
|
|
|
|
Version Specifiers
|
|
|
|
|
==================
|
|
|
|
|
|
|
|
|
|
Version numbering requirements and the semantics for specifying comparisons
|
2018-09-21 17:29:50 -04:00
|
|
|
|
between versions are defined in :pep:`440`. Direct references as defined in
|
|
|
|
|
:pep:`440` are also permitted as an alternative to version specifiers.
|
2017-12-05 01:42:10 -05:00
|
|
|
|
|
2018-01-12 02:32:37 -05:00
|
|
|
|
Following :pep:`508`, version specifiers no longer need to be surrounded by
|
|
|
|
|
parentheses in the fields Requires-Dist, Provides-Dist, Obsoletes-Dist or
|
|
|
|
|
Requires-External, so e.g. ``requests >= 2.8.1`` is now a valid value.
|
|
|
|
|
The recommended format is without parentheses, but tools parsing metadata should
|
2018-09-21 17:29:50 -04:00
|
|
|
|
also be able to handle version specifiers in parentheses. Further, public index
|
|
|
|
|
servers MAY prohibit strict version matching clauses or direct references in
|
|
|
|
|
these fields.
|
2018-01-12 02:32:37 -05:00
|
|
|
|
|
2017-12-06 13:48:24 -05:00
|
|
|
|
Usage of version specifiers is otherwise unchanged from PEP 345.
|
|
|
|
|
|
2017-12-05 01:42:10 -05:00
|
|
|
|
Environment markers
|
|
|
|
|
===================
|
|
|
|
|
|
|
|
|
|
An **environment marker** is a marker that can be added at the end of a
|
|
|
|
|
field after a semi-colon (";"), to add a condition about the execution
|
|
|
|
|
environment.
|
|
|
|
|
|
|
|
|
|
The environment marker format used to declare such a condition is defined in
|
|
|
|
|
the environment markers section of PEP 508.
|
|
|
|
|
|
2017-12-06 13:48:24 -05:00
|
|
|
|
Usage of environment markers is otherwise unchanged from PEP 345.
|
|
|
|
|
|
2017-12-05 01:42:10 -05:00
|
|
|
|
JSON-compatible Metadata
|
|
|
|
|
========================
|
|
|
|
|
|
|
|
|
|
It may be necessary to store metadata in a data structure which does not
|
|
|
|
|
allow for multiple repeated keys, such as JSON.
|
|
|
|
|
|
|
|
|
|
The canonical method to transform metadata fields into such a data structure is
|
|
|
|
|
as follows:
|
|
|
|
|
|
|
|
|
|
#. The original key-value format should be read with
|
|
|
|
|
``email.parser.HeaderParser``;
|
2018-01-22 19:14:49 -05:00
|
|
|
|
#. All transformed keys should be reduced to lower case. Hyphens should be
|
|
|
|
|
replaced with underscores, but otherwise should retain all other characters;
|
2017-12-05 01:42:10 -05:00
|
|
|
|
#. The transformed value for any field marked with "(Multiple-use") should be a
|
|
|
|
|
single list containing all the original values for the given key;
|
|
|
|
|
#. The ``Keywords`` field should be converted to a list by splitting the
|
|
|
|
|
original value on whitespace characters;
|
2018-02-18 03:02:14 -05:00
|
|
|
|
#. The message body, if present, should be set to the value of the
|
|
|
|
|
``description`` key.
|
2017-12-05 01:42:10 -05:00
|
|
|
|
#. The result should be stored as a string-keyed dictionary.
|
|
|
|
|
|
|
|
|
|
Summary of Differences From PEP 345
|
|
|
|
|
===================================
|
|
|
|
|
|
2018-01-22 19:14:49 -05:00
|
|
|
|
* Metadata-Version is now 2.1.
|
2017-12-05 01:42:10 -05:00
|
|
|
|
|
|
|
|
|
* Fields are now specified via the `Core Metadata Specification`_.
|
|
|
|
|
|
|
|
|
|
* Added two new fields: ``Description-Content-Type`` and ``Provides-Extra``
|
|
|
|
|
|
|
|
|
|
* Acceptable values for the ``Name`` field are now specified as per PEP 508.
|
|
|
|
|
|
|
|
|
|
* Added canonical method of transformation into JSON-compatible data structure.
|
|
|
|
|
|
|
|
|
|
References
|
|
|
|
|
==========
|
|
|
|
|
|
2018-01-22 19:14:49 -05:00
|
|
|
|
This document specifies version 2.1 of the metadata format.
|
2017-12-05 01:42:10 -05:00
|
|
|
|
Version 1.0 is specified in PEP 241.
|
|
|
|
|
Version 1.1 is specified in PEP 314.
|
|
|
|
|
Version 1.2 is specified in PEP 345.
|
2018-01-22 19:14:49 -05:00
|
|
|
|
Version 2.0, while not formally accepted, was specified in PEP 426.
|
2017-12-05 01:42:10 -05:00
|
|
|
|
|
|
|
|
|
.. _`Core Metadata Specification`:
|
|
|
|
|
https://packaging.python.org/specifications/core-metadata/
|
|
|
|
|
|
|
|
|
|
Copyright
|
|
|
|
|
=========
|
|
|
|
|
|
|
|
|
|
This document has been placed in the public domain.
|
|
|
|
|
|
|
|
|
|
Acknowledgements
|
|
|
|
|
================
|
|
|
|
|
|
2018-01-22 19:14:49 -05:00
|
|
|
|
Thanks to Nick Coghlan and Thomas Kluyver for contributing to this PEP.
|
2017-12-05 01:42:10 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
..
|
|
|
|
|
Local Variables:
|
|
|
|
|
mode: indented-text
|
|
|
|
|
indent-tabs-mode: nil
|
|
|
|
|
sentence-end-double-space: t
|
|
|
|
|
fill-column: 80
|
|
|
|
|
End:
|