Python Packaging User Guide
Python Packaging User Guide
Release
PyPA
i
ii
Python Packaging Guide, Release
1 The main index page will only be marked “Complete”, when all pages are marked “Complete”, which they are not.
Contents 1
Python Packaging Guide, Release
2 Contents
CHAPTER 1
Introduction
• For support related to a specific project, see the mailing list links on the Projects page.
• For something more general, or when you just not sure, use the distutils-sig list.
3
Python Packaging Guide, Release
• Help us catalog and discuss the current problems in packaging and installation. See the The issue tracker for the
problems in packaging maintained by PyPA.
• Discuss PEPs and long terms plans at distutils-sig.
• Help make this guide better. Log issues or make pull requests at https://bitbucket.org/pypa/python-packaging-
user-guide
The Guide is maintained by the PyPA and aims to be the authoritative resource on how to release and install distribu-
tions in python.
The guide was originally forked from the “Hitchhikers Guide to Packaging” in March 2013.
Each page, even this one, will state at the top whether it’s “Complete” or “Incomplete”. Admittedly, a binary distinction
is not very precise, but most pages will additionally offer a footnote to better explain what’s not complete or wrong.
Also, each page will give a “Last Reviewed” date, wich will only be updated by a PyPA member when a meaningful
review is done to determine the status.
Why do this? See here.
4 Chapter 1. Introduction
CHAPTER 2
Quick Recommendations
3
• Use virtualenv to isolate application specific dependencies from a shared Python installation.
• Use pip wheel to create a cache of wheel distributions, for the purpose of speeding up subsequent installations.
4
• If you’re looking for management of fully integrated cross-platform software stacks, consider buildout (primar-
ily focused on the web development community) or Hashdist, or conda (both primarily focused on the scientific
community).
1 If you need to install from the Egg format (which pip doesn’t support), you can use easy_install (from setuptools) or buildout. Eggs are
intended to be replaced by Wheels, so they should become less common over time.
2 The acceptance of PEP453 means that pip will likely be available by default in most installations of Python 3.4 or later.
3 The acceptance of PEP453 means that users of Python 3.4 or later will likely be able to use the standard library’s own pyvenv tool instead of
virtualenv. However, using virtualenv will still be recommended for users that need cross-version consistency.
4 For more information, see the pip guide to Building and Installing Wheels.
5 distribute (a fork of setuptools) was merged back into setuptools in June 2013, thereby making setuptools the default choice for packaging.
6 When building from source (rather than installing from a wheel file), pip ensures that packages that use the standard library’s distutils
5
Python Packaging Guide, Release
• If your project includes binary extensions, use the bdist_wheel setuptools extension available from the wheel
project, to create and publish wheel distributions for Windows and Mac OS X for your project on PyPI. These
wheel files should be compatible with the binary installers provided for download from python.org. 7
7 pip and the wheel format don’t currently offer good tools for handling arbitrary external binary dependencies. Accordingly, PyPI currently only
allows platform specific wheel distributions to be uploaded for Windows and Mac OS X. External binary dependencies are currently best handled by
building custom wheel files with the correct dependencies, by using one of the fully integrated cross-platform software stack management systems
mentioned in the installation tools section, or by using platform specific tools.
3.1 setuptools
setuptools supports building, packaging, and uploading projects to PyPI, and is also a requirement of pip.
To install setuptools from scratch:
1
1. Securely download ez_setup.py.
2. Then run the following (which may require administrator access):
$ python ez_setup.py
Warning: Prior to Setuptools-1.0, ez_setup.py was not secure, and is currently only secure when your
environment contains secure versions of either curl, wget, or powershell. 2 If you’re not sure if you’re
environment fulfills this requirement, then the safest approach is to securely download the setuptools archive
directly from PyPI, unpack it, and run “python setup.py install” from inside the unpacked directory.
Note: If you have distribute, this will upgrade to you distribute-0.7.X, which is just a wrapper, that depends on
setuptools. The end result will be that you have distribute-0.7.X (which does nothing) and the latest setuptools
1 “Secure” in this context means using a modern browser or a tool like curl that verifies SSL certificates when downloading from https URLs.
7
Python Packaging Guide, Release
installed. If you’d prefer not to end up with the distribute wrapper, then instead, run $ pip uninstall
distribute, then go back to step #1 above which installs setuptools from scratch.
3.2 pip
2
pip requires setuptools, which has to be installed first (see section above), before pip can run.
2
Securely download get-pip.py.
Then run the following (which may require administrator access), to install (or upgrade to) the latest version of pip:
$ python get-pip.py
3.3 virtualenv
Although it’s not strictly required for the tutorials in this guide, using virtualenv to create isolated Python environments
(that already contain copies of setuptools and pip) is a common practice when installing packages.
For more details, see http://www.virtualenv.org.
To install virtualenv, pip should already be installed (see section above).
To install or upgrade, run the following (which may require administrator access):
$ pip install --upgrade virtualenv
2 As of pip 1.4, pip started requiring setuptools, not distribute (a fork of setuptools). setuptools and distribute are now merged back together as
“setuptools”.
Installation Guide
What to cover:
1. distutils/sysconfig schemes
2. global vs user installs
3. virtual environments
What to cover:
9
Python Packaging Guide, Release
What to cover:
1. link to:
- pip’s quickstart (which needs improvement)
- pip’s feature overview (which doesn’t exist atm)
- pip’s cookbook
- pip’s guide on "wheel caching"
- pip’s usage (which needs better subcommand descriptions and more examples)
What to cover:
Packaging Guide
What to cover:
What to cover:
11
Python Packaging Guide, Release
FIXME
What to cover:
What to cover:
What to cover:
What to cover:
1. Building Rpms and Debs for packages (also for whole environments)
2. private non-pypi deployment workflows
3. the case for "pip bundle" (or not)
Project Summaries
6.1 pip
6.2 virtualenv
6.3 distlib
6.4 setuptools
13
Python Packaging Guide, Release
setuptools is a collection of enhancements to the Python distutils that allow you to more easily build and distribute
Python packages, especially ones that have dependencies on other packages.
distribute was a fork of setuptools that was recently merged back into setuptools (in v0.7), thereby making setuptools
the primary choice for Python packaging.
6.5 distribute
6.6 wheel
6.7 buildout
6.8 bento
6.9 conda
Docs
conda is an installation tool for managing Anaconda installations. Anaconda is a collection of powerful packages
for Python that enables large-scale data management, analysis, and visualization for Business Intelligence, Scientific
Analysis, Engineering, Machine Learning, and more.
6.10 Hashdist
Docs | Github
Hashdist is a library for building non-root software distributions. Hashdist is trying to be “the Debian of choice for
cases where Debian technology doesn’t work”. The best way for Pythonistas to think about Hashdist may be a more
powerful hybrid of virtualenv and buildout.
6.10. Hashdist 15
Python Packaging Guide, Release
PEP Summaries
Note: A revision to this PEP is likely due to it not handling the variation within a specific plat-
form, e.g. the linux variation we see across the linux distros is not covered with the simple tag
“linux_x86_64”. Because of this, PyPI currently blocks uploading platform-specific wheels (ex-
cept for windows), and pip currently won’t install platform-specific wheels from PyPI (except for
windows).
17
Python Packaging Guide, Release
Summary Specifies a tagging system to use in Binary Distribution file names. The motivation for the
system was to tag wheel distributions, which are covered in PEP427
User Impact As wheels become more common, users will notice the new tagging scheme in wheel file-
names.
Implementation The bdist_wheel setuptools extensions generates wheels using this scheme, and
pip’s wheel installer understands the scheme as of v1.4.
Implementation
The primary aim of the Python Packaging Authority is to provide a relatively easy to use software distribution infras-
tructure that is also fast, reliable and reasonably secure.
“Reasonably secure” is the aim, since backwards compatibility constraints prevent turning off some insecure legacy
features (like API access over HTTP) and the PyPI index operators only promise to deliver the bits to end users that
were uploaded by the original author. Whether or not those bits themselves are malicious is ultimately up to end users
to determine for themselves.
In addition to this document, there have been some talks and presentations regarding current and future efforts related
to packaging.
• PyCon US, March 2013
– Directions in Packaging Q & A Panel (aka ”./setup.py install must die”)
• PyCon AU, July 2013
1 Many items need be linked and expanded so this can made more accessible to regular python users.
21
Python Packaging Guide, Release
A Packaging Timeline
25
Python Packaging Guide, Release
potentially very complex projects. Instead of writing an INSTALL.txt that tells others who to install the prerequites
for a package (Python or not), with Buildout these prerequisites can be installed automatically.
2004: Phillip Eby started work on Setuptools in 2004. Setuptools is a whole range of extensions to Distutils such as
from a binary installation format (eggs), an automatic package installation tool, and the definition and declaration of
scripts for installation. Work continued throughout 2005 and 2006, and feature after feature was added to support a
whole range of advanced usage scenarios.
2003: The Python package index was up and running. The Python world now had a way to upload packages and
metadata to a central index. If we then manually downloaded a package we could install it using setup.py thanks to
Distutils.
2002: Richard Jones started work on the Python Package Index, PyPI. PyPI is also known as the Cheeseshop. The first
work on an implementation started, and PEP 301 that describes PyPI was also created then. Distutils was extended so
the metadata and packages themselves could be uploaded to this package index.
2001: The first step was to standardize the metadata that could be cataloged by any index of Python packages. Andrew
Kuchling drove the effort on this, culminating in PEP 241, later updated by PEP 314:
2000: We didn’t have a centralized index (or catalog) of packages yet, however. To work on this, the Catalog SIG was
started in the year
2000: Distutils was added to the Python standard library in Python 1.6. We now had a way to distribute and install
Python packages, if we did the distribution ourselves.
1998: The Distutils SIG (special interest group) was created. Greg Ward in the context of this discussion group started
to create Distutils about this time. Distutils allows you to structure your Python project so that it has a setup.py.
Through this setup.py you can issue a variety of commands, such as creating a tarball out of your project, or installing
your project. Distutils importantly also has infrastructure to help compiling C extensions for your Python package.
Glossary
27
Python Packaging Guide, Release
Package Index A repository of distributions with a web interface to automate Distribution discovery and consump-
tion.
Project A library, framework, script, plugin, application, or collection of data or other resources, or some combina-
tion thereof.
Python projects must have unique names, which are registered on PyPI. Each project will then contain one or
more Releases, and each release may comprise one or more distributions.
Note that there is a strong convention to name a project after the name of the package that is imported to run that
project. However, this doesn’t have to hold true. It’s possible to install a distribution from the project ‘spam’
and have it provide a package importable only as ‘eggs’.
Pure Module A module written in Python and contained in a single .py file (and possibly associated .pyc and/or .pyo
files).
Python Packaging Authority (PyPA) PyPA is an informal working group that maintains some of the most relevant
projects for Python packaging. They host projects at https://github.com/pypa/ and https://bitbucket.org/pypa,
and discuss issues at https://groups.google.com/forum/#!forum/pypa-dev.
Python Package Index (PyPI) PyPI is the default Package Index for the Python community. It is open to all Python
developers to consume and distribute their distributions.
Release A snapshot of a Project at a particular point in time, denoted by a version identifier.
Making a release may entail the publishing of multiple Distributions. For example, if version 1.0 of a project
was released, it could be available in both a source distribution format and a Windows installer distribution
format.
Source Archive An archive containing the raw source code for a Release, prior to creation of an Source Distribution
or Binary Distribution.
Source Distribution (or “sdist”) A distribution format (usually generated using python setup.py sdist)
that provides metadata and the essential source files needed for installing by a tool like pip, or for generating a
Binary Distribution.
System Package A package provided in a format native to the operating system, e.g. an rpm or dpkg file.
Wheel A Binary Distribution format introduced by PEP427 The Wheel Binary Package Format 1.0, which is intended
to replace the Egg format. Wheel is currently supported by pip.
Working Set A collection of distributions available for importing. These are the distributions that are on the sys.path
variable. At most, one Distribution for a project is possible in a working set.
Additional Resources
1 So many links we could add here. We don’t have to vouch for every word in these links, just want to narrow things down more than users
googling.
29
Python Packaging Guide, Release
Credits
31
Python Packaging Guide, Release
License
33