2012-09-22 23:24:31 -04:00
|
|
|
PEP: 427
|
2013-02-16 06:14:38 -05:00
|
|
|
Title: The Wheel Binary Package Format 1.0
|
2012-09-20 18:43:53 -04:00
|
|
|
Version: $Revision$
|
|
|
|
Last-Modified: $Date$
|
2013-03-14 01:43:28 -04:00
|
|
|
Author: Daniel Holth <dholth@gmail.com>
|
2023-10-11 08:05:51 -04:00
|
|
|
BDFL-Delegate: Alyssa Coghlan <ncoghlan@gmail.com>
|
2022-02-27 17:46:36 -05:00
|
|
|
Discussions-To: distutils-sig@python.org
|
2018-02-20 19:36:21 -05:00
|
|
|
Status: Final
|
2012-09-20 18:43:53 -04:00
|
|
|
Type: Standards Track
|
2022-06-14 17:22:20 -04:00
|
|
|
Topic: Packaging
|
2012-09-20 18:43:53 -04:00
|
|
|
Content-Type: text/x-rst
|
2012-09-23 15:37:59 -04:00
|
|
|
Created: 20-Sep-2012
|
2013-02-15 23:02:25 -05:00
|
|
|
Post-History: 18-Oct-2012, 15-Feb-2013
|
2017-06-11 15:02:39 -04:00
|
|
|
Resolution: https://mail.python.org/pipermail/python-dev/2013-February/124103.html
|
2012-09-20 18:43:53 -04:00
|
|
|
|
2021-02-25 17:35:05 -05:00
|
|
|
|
2022-10-07 11:29:13 -04:00
|
|
|
.. canonical-pypa-spec:: :ref:`packaging:binary-distribution-format`
|
|
|
|
|
2021-02-25 17:35:05 -05:00
|
|
|
|
2012-09-20 18:43:53 -04:00
|
|
|
Abstract
|
|
|
|
========
|
|
|
|
|
2012-09-23 15:37:59 -04:00
|
|
|
This PEP describes a built-package format for Python called "wheel".
|
|
|
|
|
2013-02-08 22:32:34 -05:00
|
|
|
A wheel is a ZIP-format archive with a specially formatted file name and
|
|
|
|
the ``.whl`` extension. It contains a single distribution nearly as it
|
2022-01-21 06:03:51 -05:00
|
|
|
would be installed according to :pep:`376` with a particular installation
|
2013-02-08 22:32:34 -05:00
|
|
|
scheme. Although a specialized installer is recommended, a wheel file
|
|
|
|
may be installed by simply unpacking into site-packages with the standard
|
|
|
|
'unzip' tool while preserving enough information to spread its contents
|
|
|
|
out onto their final paths at any later time.
|
2012-09-22 23:24:31 -04:00
|
|
|
|
|
|
|
|
2013-02-16 06:14:38 -05:00
|
|
|
PEP Acceptance
|
|
|
|
==============
|
2012-10-10 19:23:03 -04:00
|
|
|
|
2013-02-16 06:14:38 -05:00
|
|
|
This PEP was accepted, and the defined wheel version updated to 1.0, by
|
2023-10-11 08:05:51 -04:00
|
|
|
Alyssa Coghlan on 16th February, 2013 [1]_
|
2012-10-10 19:23:03 -04:00
|
|
|
|
|
|
|
|
2012-09-22 23:24:31 -04:00
|
|
|
Rationale
|
|
|
|
=========
|
|
|
|
|
|
|
|
Python needs a package format that is easier to install than sdist.
|
2012-09-23 15:37:59 -04:00
|
|
|
Python's sdist packages are defined by and require the distutils and
|
2012-09-22 23:24:31 -04:00
|
|
|
setuptools build systems, running arbitrary code to build-and-install,
|
2012-09-23 15:37:59 -04:00
|
|
|
and re-compile, code just so it can be installed into a new
|
|
|
|
virtualenv. This system of conflating build-install is slow, hard to
|
|
|
|
maintain, and hinders innovation in both build systems and installers.
|
|
|
|
|
|
|
|
Wheel attempts to remedy these problems by providing a simpler
|
|
|
|
interface between the build system and the installer. The wheel
|
|
|
|
binary package format frees installers from having to know about the
|
|
|
|
build system, saves time by amortizing compile time over many
|
|
|
|
installations, and removes the need to install a build system in the
|
|
|
|
target environment.
|
2012-09-22 23:24:31 -04:00
|
|
|
|
|
|
|
|
|
|
|
Details
|
|
|
|
=======
|
|
|
|
|
2013-02-18 07:41:37 -05:00
|
|
|
Installing a wheel 'distribution-1.0-py32-none-any.whl'
|
2012-09-22 23:24:31 -04:00
|
|
|
-------------------------------------------------------
|
|
|
|
|
2012-10-10 19:23:03 -04:00
|
|
|
Wheel installation notionally consists of two phases:
|
|
|
|
|
|
|
|
- Unpack.
|
2012-09-22 23:24:31 -04:00
|
|
|
|
2012-09-23 15:37:59 -04:00
|
|
|
a. Parse ``distribution-1.0.dist-info/WHEEL``.
|
|
|
|
b. Check that installer is compatible with Wheel-Version. Warn if
|
|
|
|
minor version is greater, abort if major version is greater.
|
|
|
|
c. If Root-Is-Purelib == 'true', unpack archive into purelib
|
|
|
|
(site-packages).
|
|
|
|
d. Else unpack archive into platlib (site-packages).
|
2012-09-22 23:24:31 -04:00
|
|
|
|
2012-10-10 19:23:03 -04:00
|
|
|
- Spread.
|
2012-09-22 23:24:31 -04:00
|
|
|
|
2012-09-23 15:37:59 -04:00
|
|
|
a. Unpacked archive includes ``distribution-1.0.dist-info/`` and (if
|
|
|
|
there is data) ``distribution-1.0.data/``.
|
|
|
|
b. Move each subtree of ``distribution-1.0.data/`` onto its
|
|
|
|
destination path. Each subdirectory of ``distribution-1.0.data/``
|
2012-10-15 22:22:51 -04:00
|
|
|
is a key into a dict of destination directories, such as
|
|
|
|
``distribution-1.0.data/(purelib|platlib|headers|scripts|data)``.
|
|
|
|
The initially supported paths are taken from
|
|
|
|
``distutils.command.install``.
|
2012-09-23 15:37:59 -04:00
|
|
|
c. If applicable, update scripts starting with ``#!python`` to point
|
|
|
|
to the correct interpreter.
|
2018-01-09 20:51:36 -05:00
|
|
|
d. Update ``distribution-1.0.dist-info/RECORD`` with the installed
|
2012-09-23 15:37:59 -04:00
|
|
|
paths.
|
|
|
|
e. Remove empty ``distribution-1.0.data`` directory.
|
2012-09-29 23:15:29 -04:00
|
|
|
f. Compile any installed .py to .pyc. (Uninstallers should be smart
|
|
|
|
enough to remove .pyc even if it is not mentioned in RECORD.)
|
2012-09-22 23:24:31 -04:00
|
|
|
|
2012-10-11 18:31:41 -04:00
|
|
|
Recommended installer features
|
|
|
|
''''''''''''''''''''''''''''''
|
|
|
|
|
|
|
|
Rewrite ``#!python``.
|
|
|
|
In wheel, scripts are packaged in
|
|
|
|
``{distribution}-{version}.data/scripts/``. If the first line of
|
2012-10-27 15:57:47 -04:00
|
|
|
a file in ``scripts/`` starts with exactly ``b'#!python'``, rewrite to
|
2012-10-11 18:31:41 -04:00
|
|
|
point to the correct interpreter. Unix installers may need to add
|
|
|
|
the +x bit to these files if the archive was created on Windows.
|
|
|
|
|
2013-03-10 13:33:33 -04:00
|
|
|
The ``b'#!pythonw'`` convention is allowed. ``b'#!pythonw'`` indicates
|
|
|
|
a GUI script instead of a console script.
|
|
|
|
|
2012-10-11 18:31:41 -04:00
|
|
|
Generate script wrappers.
|
|
|
|
In wheel, scripts packaged on Unix systems will certainly not have
|
|
|
|
accompanying .exe wrappers. Windows installers may want to add them
|
|
|
|
during install.
|
|
|
|
|
2013-02-24 21:41:40 -05:00
|
|
|
Recommended archiver features
|
|
|
|
'''''''''''''''''''''''''''''
|
|
|
|
|
|
|
|
Place ``.dist-info`` at the end of the archive.
|
|
|
|
Archivers are encouraged to place the ``.dist-info`` files physically
|
|
|
|
at the end of the archive. This enables some potentially interesting
|
|
|
|
ZIP tricks including the ability to amend the metadata without
|
|
|
|
rewriting the entire archive.
|
|
|
|
|
2012-10-11 18:31:41 -04:00
|
|
|
|
2012-09-22 23:24:31 -04:00
|
|
|
File Format
|
|
|
|
-----------
|
|
|
|
|
|
|
|
File name convention
|
2012-09-23 15:37:59 -04:00
|
|
|
''''''''''''''''''''
|
2012-09-22 23:24:31 -04:00
|
|
|
|
2012-09-23 15:37:59 -04:00
|
|
|
The wheel filename is ``{distribution}-{version}(-{build
|
|
|
|
tag})?-{python tag}-{abi tag}-{platform tag}.whl``.
|
2012-09-22 23:24:31 -04:00
|
|
|
|
|
|
|
distribution
|
2012-09-23 15:37:59 -04:00
|
|
|
Distribution name, e.g. 'django', 'pyramid'.
|
2012-09-22 23:24:31 -04:00
|
|
|
|
|
|
|
version
|
2013-02-15 09:50:50 -05:00
|
|
|
Distribution version, e.g. 1.0.
|
2012-09-22 23:24:31 -04:00
|
|
|
|
|
|
|
build tag
|
2021-02-05 17:36:00 -05:00
|
|
|
Optional build number. Must start with a digit. Acts as a
|
|
|
|
tie-breaker if two wheel file names are the same in all other
|
|
|
|
respects (i.e. name, version, and other tags). Sort as an
|
|
|
|
empty tuple if unspecified, else sort as a two-item tuple with
|
|
|
|
the first item being the initial digits as an ``int``, and the
|
|
|
|
second item being the remainder of the tag as a ``str``.
|
2012-09-22 23:24:31 -04:00
|
|
|
|
|
|
|
language implementation and version tag
|
2012-09-23 15:37:59 -04:00
|
|
|
E.g. 'py27', 'py2', 'py3'.
|
2012-09-22 23:24:31 -04:00
|
|
|
|
|
|
|
abi tag
|
2012-09-23 15:37:59 -04:00
|
|
|
E.g. 'cp33m', 'abi3', 'none'.
|
2012-09-22 23:24:31 -04:00
|
|
|
|
|
|
|
platform tag
|
2012-09-23 15:37:59 -04:00
|
|
|
E.g. 'linux_x86_64', 'any'.
|
2012-09-22 23:24:31 -04:00
|
|
|
|
2012-09-23 15:37:59 -04:00
|
|
|
For example, ``distribution-1.0-1-py27-none-any.whl`` is the first
|
|
|
|
build of a package called 'distribution', and is compatible with
|
|
|
|
Python 2.7 (any Python 2.7 implementation), with no ABI (pure Python),
|
|
|
|
on any CPU architecture.
|
2012-09-22 23:24:31 -04:00
|
|
|
|
|
|
|
The last three components of the filename before the extension are
|
2012-09-23 15:37:59 -04:00
|
|
|
called "compatibility tags." The compatibility tags express the
|
2022-01-21 06:03:51 -05:00
|
|
|
package's basic interpreter requirements and are detailed in :pep:`425`.
|
2012-09-22 23:24:31 -04:00
|
|
|
|
2013-02-15 09:50:50 -05:00
|
|
|
Escaping and Unicode
|
|
|
|
''''''''''''''''''''
|
|
|
|
|
|
|
|
Each component of the filename is escaped by replacing runs of
|
|
|
|
non-alphanumeric characters with an underscore ``_``::
|
|
|
|
|
|
|
|
re.sub("[^\w\d.]+", "_", distribution, re.UNICODE)
|
|
|
|
|
2013-02-24 21:41:40 -05:00
|
|
|
The archive filename is Unicode. It will be some time before the tools
|
|
|
|
are updated to support non-ASCII filenames, but they are supported in
|
|
|
|
this specification.
|
|
|
|
|
|
|
|
The filenames *inside* the archive are encoded as UTF-8. Although some
|
|
|
|
ZIP clients in common use do not properly display UTF-8 filenames,
|
|
|
|
the encoding is supported by both the ZIP specification and Python's
|
|
|
|
``zipfile``.
|
2012-09-22 23:24:31 -04:00
|
|
|
|
|
|
|
File contents
|
2012-09-23 15:37:59 -04:00
|
|
|
'''''''''''''
|
2012-09-22 23:24:31 -04:00
|
|
|
|
2013-02-08 22:32:34 -05:00
|
|
|
The contents of a wheel file, where {distribution} is replaced with the
|
2012-10-27 15:57:47 -04:00
|
|
|
name of the package, e.g. ``beaglevote`` and {version} is replaced with
|
|
|
|
its version, e.g. ``1.0.0``, consist of:
|
|
|
|
|
|
|
|
#. ``/``, the root of the archive, contains all files to be installed in
|
|
|
|
``purelib`` or ``platlib`` as specified in ``WHEEL``. ``purelib`` and
|
|
|
|
``platlib`` are usually both ``site-packages``.
|
|
|
|
#. ``{distribution}-{version}.dist-info/`` contains metadata.
|
|
|
|
#. ``{distribution}-{version}.data/`` contains one subdirectory
|
|
|
|
for each non-empty install scheme key not already covered, where
|
|
|
|
the subdirectory name is an index into a dictionary of install paths
|
2022-04-13 14:20:18 -04:00
|
|
|
(e.g. ``data``, ``scripts``, ``headers``, ``purelib``, ``platlib``).
|
2012-10-27 15:57:47 -04:00
|
|
|
#. Python scripts must appear in ``scripts`` and begin with exactly
|
|
|
|
``b'#!python'`` in order to enjoy script wrapper generation and
|
|
|
|
``#!python`` rewriting at install time. They may have any or no
|
|
|
|
extension.
|
2013-02-12 22:30:53 -05:00
|
|
|
#. ``{distribution}-{version}.dist-info/METADATA`` is Metadata version 1.1
|
2013-02-16 06:14:38 -05:00
|
|
|
or greater format metadata.
|
2012-10-27 15:57:47 -04:00
|
|
|
#. ``{distribution}-{version}.dist-info/WHEEL`` is metadata about the archive
|
2013-02-15 09:50:50 -05:00
|
|
|
itself in the same basic key: value format::
|
2012-09-22 23:24:31 -04:00
|
|
|
|
2013-02-16 06:14:38 -05:00
|
|
|
Wheel-Version: 1.0
|
|
|
|
Generator: bdist_wheel 1.0
|
2012-09-23 15:37:59 -04:00
|
|
|
Root-Is-Purelib: true
|
2013-02-15 23:02:25 -05:00
|
|
|
Tag: py2-none-any
|
|
|
|
Tag: py3-none-any
|
|
|
|
Build: 1
|
|
|
|
|
|
|
|
#. ``Wheel-Version`` is the version number of the Wheel specification.
|
2013-02-16 06:14:38 -05:00
|
|
|
#. ``Generator`` is the name and optionally the version of the software
|
|
|
|
that produced the archive.
|
|
|
|
#. ``Root-Is-Purelib`` is true if the top level directory of the archive
|
|
|
|
should be installed into purelib; otherwise the root should be installed
|
|
|
|
into platlib.
|
|
|
|
#. ``Tag`` is the wheel's expanded compatibility tags; in the example the
|
|
|
|
filename would contain ``py2.py3-none-any``.
|
|
|
|
#. ``Build`` is the build number and is omitted if there is no build number.
|
2012-09-22 23:24:31 -04:00
|
|
|
#. A wheel installer should warn if Wheel-Version is greater than the
|
2012-10-27 15:57:47 -04:00
|
|
|
version it supports, and must fail if Wheel-Version has a greater
|
|
|
|
major version than the version it supports.
|
2012-09-22 23:24:31 -04:00
|
|
|
#. Wheel, being an installation format that is intended to work across
|
|
|
|
multiple versions of Python, does not generally include .pyc files.
|
|
|
|
#. Wheel does not contain setup.py or setup.cfg.
|
|
|
|
|
2012-10-27 15:57:47 -04:00
|
|
|
This version of the wheel specification is based on the distutils install
|
|
|
|
schemes and does not define how to install files to other locations.
|
|
|
|
The layout offers a superset of the functionality provided by the existing
|
|
|
|
wininst and egg binary formats.
|
|
|
|
|
2012-09-22 23:24:31 -04:00
|
|
|
|
|
|
|
The .dist-info directory
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
#. Wheel .dist-info directories include at a minimum METADATA, WHEEL,
|
|
|
|
and RECORD.
|
2013-02-08 22:32:34 -05:00
|
|
|
#. METADATA is the package metadata, the same format as PKG-INFO as
|
|
|
|
found at the root of sdists.
|
|
|
|
#. WHEEL is the wheel metadata specific to a build of the package.
|
2012-09-22 23:24:31 -04:00
|
|
|
#. RECORD is a list of (almost) all the files in the wheel and their
|
2022-01-21 06:03:51 -05:00
|
|
|
secure hashes. Unlike :pep:`376`, every file except RECORD, which
|
2012-09-23 15:37:59 -04:00
|
|
|
cannot contain a hash of itself, must include its hash. The hash
|
|
|
|
algorithm must be sha256 or better; specifically, md5 and sha1 are
|
|
|
|
not permitted, as signed wheel files rely on the strong hashes in
|
|
|
|
RECORD to validate the integrity of the archive.
|
2022-01-21 06:03:51 -05:00
|
|
|
#. :pep:`376`'s INSTALLER and REQUESTED are not included in the archive.
|
2012-09-23 15:37:59 -04:00
|
|
|
#. RECORD.jws is used for digital signatures. It is not mentioned in
|
2012-09-22 23:24:31 -04:00
|
|
|
RECORD.
|
2012-10-18 21:06:24 -04:00
|
|
|
#. RECORD.p7s is allowed as a courtesy to anyone who would prefer to
|
2013-02-08 22:32:34 -05:00
|
|
|
use S/MIME signatures to secure their wheel files. It is not
|
|
|
|
mentioned in RECORD.
|
2012-09-22 23:24:31 -04:00
|
|
|
#. During extraction, wheel installers verify all the hashes in RECORD
|
2012-09-23 15:37:59 -04:00
|
|
|
against the file contents. Apart from RECORD and its signatures,
|
2012-09-22 23:24:31 -04:00
|
|
|
installation will fail if any file in the archive is not both
|
|
|
|
mentioned and correctly hashed in RECORD.
|
|
|
|
|
|
|
|
|
|
|
|
The .data directory
|
|
|
|
^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
Any file that is not normally installed inside site-packages goes into
|
|
|
|
the .data directory, named as the .dist-info directory but with the
|
|
|
|
.data/ extension::
|
|
|
|
|
|
|
|
distribution-1.0.dist-info/
|
|
|
|
|
|
|
|
distribution-1.0.data/
|
|
|
|
|
2012-10-18 21:06:24 -04:00
|
|
|
The .data directory contains subdirectories with the scripts, headers,
|
|
|
|
documentation and so forth from the distribution. During installation the
|
|
|
|
contents of these subdirectories are moved onto their destination paths.
|
2012-09-22 23:24:31 -04:00
|
|
|
|
|
|
|
|
|
|
|
Signed wheel files
|
|
|
|
------------------
|
|
|
|
|
2012-09-23 15:37:59 -04:00
|
|
|
Wheel files include an extended RECORD that enables digital
|
2022-01-21 06:03:51 -05:00
|
|
|
signatures. :pep:`376`'s RECORD is altered to include a secure hash
|
2012-09-23 15:37:59 -04:00
|
|
|
``digestname=urlsafe_b64encode_nopad(digest)`` (urlsafe base64
|
|
|
|
encoding with no trailing = characters) as the second column instead
|
|
|
|
of an md5sum. All possible entries are hashed, including any
|
2013-02-08 22:32:34 -05:00
|
|
|
generated files such as .pyc files, but not RECORD which cannot contain its
|
|
|
|
own hash. For example::
|
2012-09-22 23:24:31 -04:00
|
|
|
|
|
|
|
file.py,sha256=AVTFPZpEKzuHr7OvQZmhaU3LvwKz06AJw8mT\_pNh2yI,3144
|
|
|
|
distribution-1.0.dist-info/RECORD,,
|
|
|
|
|
2012-11-13 11:31:37 -05:00
|
|
|
The signature file(s) RECORD.jws and RECORD.p7s are not mentioned in
|
|
|
|
RECORD at all since they can only be added after RECORD is generated.
|
2013-02-08 22:32:34 -05:00
|
|
|
Every other file in the archive must have a correct hash in RECORD
|
2012-11-13 11:31:37 -05:00
|
|
|
or the installation will fail.
|
2012-09-22 23:24:31 -04:00
|
|
|
|
2012-11-13 11:31:37 -05:00
|
|
|
If JSON web signatures are used, one or more JSON Web Signature JSON
|
2013-02-08 22:32:34 -05:00
|
|
|
Serialization (JWS-JS) signatures is stored in a file RECORD.jws adjacent
|
|
|
|
to RECORD. JWS is used to sign RECORD by including the SHA-256 hash of
|
|
|
|
RECORD as the signature's JSON payload::
|
2012-09-22 23:24:31 -04:00
|
|
|
|
|
|
|
{ "hash": "sha256=ADD-r2urObZHcxBW3Cr-vDCu5RJwT4CaRTHiFmbcIYY" }
|
|
|
|
|
2013-03-10 13:33:33 -04:00
|
|
|
(The hash value is the same format used in RECORD.)
|
|
|
|
|
2013-02-08 22:32:34 -05:00
|
|
|
If RECORD.p7s is used, it must contain a detached S/MIME format signature
|
|
|
|
of RECORD.
|
2012-11-13 11:31:37 -05:00
|
|
|
|
2013-02-08 22:32:34 -05:00
|
|
|
A wheel installer is not required to understand digital signatures but
|
|
|
|
MUST verify the hashes in RECORD against the extracted file contents.
|
|
|
|
When the installer checks file hashes against RECORD, a separate signature
|
|
|
|
checker only needs to establish that RECORD matches the signature.
|
2012-09-22 23:24:31 -04:00
|
|
|
|
|
|
|
See
|
|
|
|
|
2022-02-02 22:52:40 -05:00
|
|
|
- :rfc:`7515`
|
2022-01-21 06:03:51 -05:00
|
|
|
- https://datatracker.ietf.org/doc/html/draft-jones-jose-jws-json-serialization.html
|
2022-02-02 22:52:40 -05:00
|
|
|
- :rfc:`7517`
|
2022-01-21 06:03:51 -05:00
|
|
|
- https://datatracker.ietf.org/doc/html/draft-jones-jose-json-private-key.html
|
2012-09-22 23:24:31 -04:00
|
|
|
|
|
|
|
|
|
|
|
Comparison to .egg
|
|
|
|
------------------
|
|
|
|
|
2012-09-23 15:37:59 -04:00
|
|
|
#. Wheel is an installation format; egg is importable. Wheel archives
|
|
|
|
do not need to include .pyc and are less tied to a specific Python
|
2012-09-22 23:24:31 -04:00
|
|
|
version or implementation. Wheel can install (pure Python) packages
|
2012-09-23 15:37:59 -04:00
|
|
|
built with previous versions of Python so you don't always have to
|
2012-09-22 23:24:31 -04:00
|
|
|
wait for the packager to catch up.
|
2012-09-23 15:37:59 -04:00
|
|
|
#. Wheel uses .dist-info directories; egg uses .egg-info. Wheel is
|
2012-09-22 23:24:31 -04:00
|
|
|
compatible with the new world of Python packaging and the new
|
|
|
|
concepts it brings.
|
2012-09-23 15:37:59 -04:00
|
|
|
#. Wheel has a richer file naming convention for today's
|
|
|
|
multi-implementation world. A single wheel archive can indicate
|
|
|
|
its compatibility with a number of Python language versions and
|
|
|
|
implementations, ABIs, and system architectures. Historically the
|
|
|
|
ABI has been specific to a CPython release, wheel is ready for the
|
|
|
|
stable ABI.
|
|
|
|
#. Wheel is lossless. The first wheel implementation bdist_wheel
|
|
|
|
always generates egg-info, and then converts it to a .whl. It is
|
|
|
|
also possible to convert existing eggs and bdist_wininst
|
|
|
|
distributions.
|
|
|
|
#. Wheel is versioned. Every wheel file contains the version of the
|
2012-09-22 23:24:31 -04:00
|
|
|
wheel specification and the implementation that packaged it.
|
|
|
|
Hopefully the next migration can simply be to Wheel 2.0.
|
|
|
|
#. Wheel is a reference to the other Python.
|
|
|
|
|
|
|
|
|
|
|
|
FAQ
|
|
|
|
===
|
|
|
|
|
2014-01-29 08:50:14 -05:00
|
|
|
|
2012-10-11 18:31:41 -04:00
|
|
|
Wheel defines a .data directory. Should I put all my data there?
|
2014-01-29 08:50:14 -05:00
|
|
|
-----------------------------------------------------------------
|
|
|
|
|
2012-10-11 18:31:41 -04:00
|
|
|
This specification does not have an opinion on how you should organize
|
|
|
|
your code. The .data directory is just a place for any files that are
|
|
|
|
not normally installed inside ``site-packages`` or on the PYTHONPATH.
|
2012-10-27 15:57:47 -04:00
|
|
|
In other words, you may continue to use ``pkgutil.get_data(package,
|
|
|
|
resource)`` even though *those* files will usually not be distributed
|
|
|
|
in *wheel's* ``.data`` directory.
|
2012-09-22 23:24:31 -04:00
|
|
|
|
2014-01-29 08:50:14 -05:00
|
|
|
|
2012-11-13 11:31:37 -05:00
|
|
|
Why does wheel include attached signatures?
|
2014-01-29 08:50:14 -05:00
|
|
|
-------------------------------------------
|
|
|
|
|
2012-11-13 11:31:37 -05:00
|
|
|
Attached signatures are more convenient than detached signatures
|
|
|
|
because they travel with the archive. Since only the individual files
|
|
|
|
are signed, the archive can be recompressed without invalidating
|
2013-02-08 22:32:34 -05:00
|
|
|
the signature or individual files can be verified without having
|
2012-11-13 11:31:37 -05:00
|
|
|
to download the whole archive.
|
2012-10-27 15:57:47 -04:00
|
|
|
|
2014-01-29 08:50:14 -05:00
|
|
|
|
2013-02-08 11:56:08 -05:00
|
|
|
Why does wheel allow JWS signatures?
|
2014-01-29 08:50:14 -05:00
|
|
|
------------------------------------
|
|
|
|
|
2013-02-08 22:32:34 -05:00
|
|
|
The JOSE specifications of which JWS is a part are designed to be easy
|
|
|
|
to implement, a feature that is also one of wheel's primary design
|
|
|
|
goals. JWS yields a useful, concise pure-Python implementation.
|
2013-02-08 11:56:08 -05:00
|
|
|
|
2014-01-29 08:50:14 -05:00
|
|
|
|
2013-02-08 11:56:08 -05:00
|
|
|
Why does wheel also allow S/MIME signatures?
|
2014-01-29 08:50:14 -05:00
|
|
|
--------------------------------------------
|
|
|
|
|
2013-02-08 22:32:34 -05:00
|
|
|
S/MIME signatures are allowed for users who need or want to use
|
2013-02-08 11:56:08 -05:00
|
|
|
existing public key infrastructure with wheel.
|
|
|
|
|
2013-02-08 22:32:34 -05:00
|
|
|
Signed packages are only a basic building block in a secure package
|
2013-02-15 07:41:57 -05:00
|
|
|
update system. Wheel only provides the building block.
|
2013-02-08 11:56:08 -05:00
|
|
|
|
2014-01-29 08:50:14 -05:00
|
|
|
|
2013-03-10 13:33:33 -04:00
|
|
|
What's the deal with "purelib" vs. "platlib"?
|
2014-01-29 08:50:14 -05:00
|
|
|
---------------------------------------------
|
|
|
|
|
2014-01-28 08:21:43 -05:00
|
|
|
Wheel preserves the "purelib" vs. "platlib" distinction, which is
|
|
|
|
significant on some platforms. For example, Fedora installs pure
|
|
|
|
Python packages to '/usr/lib/pythonX.Y/site-packages' and platform
|
|
|
|
dependent packages to '/usr/lib64/pythonX.Y/site-packages'.
|
2013-03-10 13:33:33 -04:00
|
|
|
|
2014-01-28 08:21:43 -05:00
|
|
|
A wheel with "Root-Is-Purelib: false" with all its files
|
2013-03-10 13:33:33 -04:00
|
|
|
in ``{name}-{version}.data/purelib`` is equivalent to a wheel with
|
|
|
|
"Root-Is-Purelib: true" with those same files in the root, and it
|
|
|
|
is legal to have files in both the "purelib" and "platlib" categories.
|
|
|
|
|
|
|
|
In practice a wheel should have only one of "purelib" or "platlib"
|
|
|
|
depending on whether it is pure Python or not and those files should
|
2014-01-28 08:21:43 -05:00
|
|
|
be at the root with the appropriate setting given for "Root-is-purelib".
|
2013-02-16 06:14:38 -05:00
|
|
|
|
2014-01-29 08:50:14 -05:00
|
|
|
|
2014-01-28 08:26:43 -05:00
|
|
|
Is it possible to import Python code directly from a wheel file?
|
2014-01-29 08:50:14 -05:00
|
|
|
----------------------------------------------------------------
|
|
|
|
|
2014-01-30 07:18:50 -05:00
|
|
|
Technically, due to the combination of supporting installation via
|
|
|
|
simple extraction and using an archive format that is compatible with
|
|
|
|
``zipimport``, a subset of wheel files *do* support being placed directly
|
|
|
|
on ``sys.path``. However, while this behaviour is a natural consequence
|
|
|
|
of the format design, actually relying on it is generally discouraged.
|
|
|
|
|
|
|
|
Firstly, wheel *is* designed primarily as a distribution format, so
|
|
|
|
skipping the installation step also means deliberately avoiding any
|
|
|
|
reliance on features that assume full installation (such as being able
|
|
|
|
to use standard tools like ``pip`` and ``virtualenv`` to capture and
|
|
|
|
manage dependencies in a way that can be properly tracked for auditing
|
|
|
|
and security update purposes, or integrating fully with the standard
|
2014-01-30 07:07:45 -05:00
|
|
|
build machinery for C extensions by publishing header files in the
|
|
|
|
appropriate place).
|
|
|
|
|
|
|
|
Secondly, while some Python software is written to support running
|
|
|
|
directly from a zip archive, it is still common for code to be written
|
|
|
|
assuming it has been fully installed. When that assumption is broken
|
|
|
|
by trying to run the software from a zip archive, the failures can often
|
|
|
|
be obscure and hard to diagnose (especially when they occur in third
|
|
|
|
party libraries). The two most common sources of problems with this
|
|
|
|
are the fact that importing C extensions from a zip archive is *not*
|
|
|
|
supported by CPython (since doing so is not supported directly by the
|
|
|
|
dynamic loading machinery on any platform) and that when running from
|
|
|
|
a zip archive the ``__file__`` attribute no longer refers to an
|
|
|
|
ordinary filesystem path, but to a combination path that includes
|
|
|
|
both the location of the zip archive on the filesystem and the
|
2014-01-30 07:18:50 -05:00
|
|
|
relative path to the module inside the archive. Even when software
|
|
|
|
correctly uses the abstract resource APIs internally, interfacing with
|
|
|
|
external components may still require the availability of an actual
|
|
|
|
on-disk file.
|
2014-01-30 07:07:45 -05:00
|
|
|
|
|
|
|
Like metaclasses, monkeypatching and metapath importers, if you're not
|
|
|
|
already sure you need to take advantage of this feature, you almost
|
|
|
|
certainly don't need it. If you *do* decide to use it anyway, be
|
|
|
|
aware that many projects will require a failure to be reproduced with
|
|
|
|
a fully installed package before accepting it as a genuine bug.
|
2014-01-28 08:26:43 -05:00
|
|
|
|
|
|
|
|
2013-02-16 06:14:38 -05:00
|
|
|
References
|
|
|
|
==========
|
|
|
|
|
|
|
|
.. [1] PEP acceptance
|
2017-06-11 15:02:39 -04:00
|
|
|
(https://mail.python.org/pipermail/python-dev/2013-February/124103.html)
|
2013-02-16 06:14:38 -05:00
|
|
|
|
|
|
|
|
2012-10-27 15:57:47 -04:00
|
|
|
Appendix
|
|
|
|
========
|
|
|
|
|
|
|
|
Example urlsafe-base64-nopad implementation::
|
2012-12-31 10:45:03 -05:00
|
|
|
|
2012-10-27 15:57:47 -04:00
|
|
|
# urlsafe-base64-nopad for Python 3
|
|
|
|
import base64
|
|
|
|
|
|
|
|
def urlsafe_b64encode_nopad(data):
|
|
|
|
return base64.urlsafe_b64encode(data).rstrip(b'=')
|
|
|
|
|
|
|
|
def urlsafe_b64decode_nopad(data):
|
|
|
|
pad = b'=' * (4 - (len(data) & 3))
|
|
|
|
return base64.urlsafe_b64decode(data + pad)
|
|
|
|
|
2012-09-20 18:43:53 -04:00
|
|
|
|
|
|
|
Copyright
|
|
|
|
=========
|
|
|
|
|
2012-09-22 23:24:31 -04:00
|
|
|
This document has been placed into the public domain.
|
2012-09-20 18:43:53 -04:00
|
|
|
|
2012-09-23 15:37:59 -04:00
|
|
|
|
2012-12-31 10:45:03 -05:00
|
|
|
|
2012-09-23 15:37:59 -04:00
|
|
|
..
|
|
|
|
Local Variables:
|
|
|
|
mode: indented-text
|
|
|
|
indent-tabs-mode: nil
|
|
|
|
sentence-end-double-space: t
|
|
|
|
fill-column: 70
|
|
|
|
coding: utf-8
|
|
|
|
End:
|