2002-11-07 21:59:18 -05:00
|
|
|
|
PEP: 301
|
|
|
|
|
Title: Package Index and Metadata for Distutils
|
|
|
|
|
Version: $Revision$
|
|
|
|
|
Last-Modified: $Date$
|
2007-06-20 20:48:29 -04:00
|
|
|
|
Author: Richard Jones <richard@python.org>
|
2005-03-19 10:23:53 -05:00
|
|
|
|
Status: Final
|
2002-11-07 21:59:18 -05:00
|
|
|
|
Type: Standards Track
|
2022-06-14 17:22:20 -04:00
|
|
|
|
Topic: Packaging
|
2002-11-07 21:59:18 -05:00
|
|
|
|
Content-Type: text/x-rst
|
|
|
|
|
Created: 24-Oct-2002
|
|
|
|
|
Python-Version: 2.3
|
2022-03-09 11:04:44 -05:00
|
|
|
|
Post-History: 08-Nov-2002
|
2002-11-07 21:59:18 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Abstract
|
|
|
|
|
========
|
|
|
|
|
|
|
|
|
|
This PEP proposes several extensions to the Distutils packaging system
|
|
|
|
|
[1]_. These enhancements include a central package index server,
|
|
|
|
|
tools for submitting package information to the index and extensions
|
|
|
|
|
to the package metadata to include Trove [2]_ information.
|
|
|
|
|
|
|
|
|
|
This PEP does not address issues of package dependency. It also does
|
2022-01-21 06:03:51 -05:00
|
|
|
|
not address storage and download of packages as described in :pep:`243`.
|
|
|
|
|
Nor is it proposing a local database of packages as described
|
|
|
|
|
in :pep:`262`.
|
2002-11-07 21:59:18 -05:00
|
|
|
|
|
|
|
|
|
Existing package repositories such as the Vaults of Parnassus [3]_,
|
|
|
|
|
CPAN [4]_ and PAUSE [5]_ will be investigated as prior art in this
|
|
|
|
|
field.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Rationale
|
|
|
|
|
=========
|
|
|
|
|
|
|
|
|
|
Python programmers have long needed a simple method of discovering
|
|
|
|
|
existing modules and systems available for their use. It is arguable
|
|
|
|
|
that the existence of these systems for other languages have been a
|
|
|
|
|
significant contribution to their popularity. The existence of the
|
|
|
|
|
Catalog-SIG, and the many discussions there indicate that there is a
|
|
|
|
|
large population of users who recognise this need.
|
|
|
|
|
|
|
|
|
|
The introduction of the Distutils packaging system to Python
|
|
|
|
|
simplified the process of distributing shareable code, and included
|
|
|
|
|
mechanisms for the capture of package metadata, but did little with
|
|
|
|
|
the metadata save ship it with the package.
|
|
|
|
|
|
|
|
|
|
An interface to the index should be hosted in the python.org domain,
|
|
|
|
|
giving it an air of legitimacy that existing catalog efforts do not
|
|
|
|
|
have.
|
|
|
|
|
|
|
|
|
|
The interface for submitting information to the catalog should be as
|
|
|
|
|
simple as possible - hopefully just a one-line command for most users.
|
|
|
|
|
|
|
|
|
|
Issues of package dependency are not addressed due to the complexity
|
2022-01-21 06:03:51 -05:00
|
|
|
|
of such a system. :pep:`262` proposes such a system, but as of this
|
2003-04-30 09:37:17 -04:00
|
|
|
|
writing the PEP is still unfinished.
|
2002-11-07 21:59:18 -05:00
|
|
|
|
|
|
|
|
|
Issues of package dissemination (storage on a central server) are
|
|
|
|
|
not addressed because they require assumptions about availability of
|
2022-01-21 06:03:51 -05:00
|
|
|
|
storage and bandwidth that I am not in a position to make. :pep:`243`,
|
2002-11-07 21:59:18 -05:00
|
|
|
|
which is still being developed, is tackling these issues and many
|
|
|
|
|
more. This proposal is considered compatible with, and adjunct to
|
2022-01-21 06:03:51 -05:00
|
|
|
|
the proposal in :pep:`243`.
|
2002-11-07 21:59:18 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Specification
|
|
|
|
|
=============
|
|
|
|
|
|
|
|
|
|
The specification takes three parts, the `web interface`_, the
|
|
|
|
|
`Distutils register command`_ and the `Distutils Trove
|
2002-11-20 17:08:48 -05:00
|
|
|
|
classification`_.
|
2002-11-07 21:59:18 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Web Interface
|
|
|
|
|
-------------
|
|
|
|
|
|
|
|
|
|
A web interface is implemented over a simple store. The interface is
|
|
|
|
|
available through the python.org domain, either directly or as
|
|
|
|
|
packages.python.org.
|
|
|
|
|
|
|
|
|
|
The store has columns for all metadata fields. The (name, version)
|
|
|
|
|
double is used as a uniqueness key. Additional submissions for an
|
|
|
|
|
existing (name, version) will result in an *update* operation.
|
|
|
|
|
|
|
|
|
|
The web interface implements the following commands/interfaces:
|
|
|
|
|
|
|
|
|
|
**index**
|
|
|
|
|
Lists known packages, optionally filtered. An additional HTML page,
|
|
|
|
|
**search**, presents a form to the user which is used to customise
|
|
|
|
|
the index view. The index will include a browsing interface like
|
|
|
|
|
that presented in the Trove interface design section 4.3. The
|
|
|
|
|
results will be paginated, sorted alphabetically and only showing
|
|
|
|
|
the most recent version. The most recent version information will
|
|
|
|
|
be determined using the Distutils LooseVersion class.
|
|
|
|
|
|
|
|
|
|
**display**
|
|
|
|
|
Displays information about the package. All fields are displayed as
|
|
|
|
|
plain text. The "url" (or "home_page") field is hyperlinked.
|
|
|
|
|
|
|
|
|
|
**submit**
|
2002-11-17 21:02:43 -05:00
|
|
|
|
Accepts a POST submission of metadata about a package. The
|
2002-11-07 21:59:18 -05:00
|
|
|
|
"name" and "version" fields are mandatory, as they uniquely identify
|
|
|
|
|
an entry in the index. **Submit** will automatically determine
|
2002-11-20 17:08:48 -05:00
|
|
|
|
whether to create a new entry or update an existing entry. The
|
2002-11-07 21:59:18 -05:00
|
|
|
|
metadata is checked for correctness where appropriate - specifically
|
|
|
|
|
the Trove discriminators are compared with the allowed set. An
|
|
|
|
|
update will update all information about the package based on the
|
|
|
|
|
new submitted information.
|
|
|
|
|
|
2003-04-27 09:48:39 -04:00
|
|
|
|
There will also be a submit/edit form that will allow manual
|
|
|
|
|
submission and updating for those who do not use Distutils.
|
2002-11-07 21:59:18 -05:00
|
|
|
|
|
2002-11-17 21:02:43 -05:00
|
|
|
|
**submit_pkg_info**
|
|
|
|
|
Accepts a POST submission of a PKG-INFO file and performs the same
|
|
|
|
|
function as the **submit** interface.
|
|
|
|
|
|
2002-11-07 21:59:18 -05:00
|
|
|
|
**user**
|
2003-04-27 09:48:39 -04:00
|
|
|
|
Registers a new user with the index. Requires username, password
|
|
|
|
|
and email address. Passwords will be stored in the index database
|
|
|
|
|
as SHA hashes. If the username already exists in the database:
|
2002-11-07 21:59:18 -05:00
|
|
|
|
|
|
|
|
|
1. If valid HTTP Basic authentication is provided, the password and
|
|
|
|
|
email address are updated with the submission information, or
|
|
|
|
|
2. If no valid authentication is provided, the user is informed that
|
|
|
|
|
the login is already taken.
|
|
|
|
|
|
|
|
|
|
Registration will be a three-step process, involving:
|
|
|
|
|
|
2002-11-20 17:08:48 -05:00
|
|
|
|
1. User submission of details via the Distutils *register* command
|
|
|
|
|
or through the web,
|
2002-11-07 21:59:18 -05:00
|
|
|
|
2. Index server sending email to the user's email address with a URL
|
|
|
|
|
to visit to confirm registration with a random one-time key, and
|
|
|
|
|
3. User visits URL with the key and confirms registration.
|
|
|
|
|
|
|
|
|
|
**roles**
|
|
|
|
|
An interface for changing user Role assignments.
|
|
|
|
|
|
|
|
|
|
**password_reset**
|
|
|
|
|
Using a supplied email address as the key, this resets a user's
|
|
|
|
|
password and sends an email with the new password to the user.
|
|
|
|
|
|
|
|
|
|
The **submit** command will require HTTP Basic authentication,
|
|
|
|
|
preferably over an HTTPS connection.
|
|
|
|
|
|
2002-11-17 21:02:43 -05:00
|
|
|
|
The server interface will indicate success or failure of the commands
|
|
|
|
|
through a subset of the standard HTTP response codes:
|
|
|
|
|
|
|
|
|
|
===== ============== ================================================
|
|
|
|
|
Code Meaning Register command implications
|
|
|
|
|
===== ============== ================================================
|
|
|
|
|
200 OK Everything worked just fine
|
|
|
|
|
400 Bad request Data provided for submission was malformed
|
|
|
|
|
401 Unauthorised The username or password supplied were incorrect
|
|
|
|
|
403 Forbidden User does not have permission to update the
|
|
|
|
|
package information (not Owner or Maintainer)
|
|
|
|
|
===== ============== ================================================
|
|
|
|
|
|
2002-11-20 17:08:48 -05:00
|
|
|
|
User Roles
|
|
|
|
|
----------
|
|
|
|
|
|
|
|
|
|
Three user Roles will be assignable to users:
|
|
|
|
|
|
|
|
|
|
Owner
|
|
|
|
|
Owns a package name, may assign Maintainer Role for that name. The
|
|
|
|
|
first user to register information about a package is deemed Owner
|
|
|
|
|
of the package name. The Admin user may change this if necessary.
|
|
|
|
|
May submit updates for the package name.
|
|
|
|
|
|
|
|
|
|
Maintainer
|
|
|
|
|
Can submit and update info for a particular package name.
|
|
|
|
|
|
|
|
|
|
Admin
|
|
|
|
|
Can assign Owner Role and edit user details. Not specific to a
|
|
|
|
|
package name.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Index Storage (Schema)
|
|
|
|
|
----------------------
|
|
|
|
|
|
|
|
|
|
The index is stored in a set of relational database tables:
|
|
|
|
|
|
|
|
|
|
**packages**
|
|
|
|
|
Lists package names and holds package-level metadata (currently
|
|
|
|
|
just the stable release version)
|
|
|
|
|
|
|
|
|
|
**releases**
|
|
|
|
|
Each package has an entry in **releases** for each version of the
|
|
|
|
|
package that is released. A row holds the bulk of the information
|
|
|
|
|
given in the package's PKG-INFO file. There is one row for each
|
|
|
|
|
package (*name*, *version*).
|
|
|
|
|
|
|
|
|
|
**trove_discriminators**
|
|
|
|
|
Lists the Trove discriminator text and assigns each one a unique
|
|
|
|
|
ID.
|
|
|
|
|
|
|
|
|
|
**release_discriminators**
|
2003-04-27 09:48:39 -04:00
|
|
|
|
Each entry maps a package (*name*, *version*) to a
|
|
|
|
|
*discriminator_id*. We map to releases instead of packages because
|
|
|
|
|
the set of discriminators may change between releases.
|
2002-11-20 17:08:48 -05:00
|
|
|
|
|
|
|
|
|
**journals**
|
|
|
|
|
Holds information about changes to package information in the
|
|
|
|
|
index. Changes to the **packages**, **releases**, **roles**,
|
|
|
|
|
and **release_discriminators** tables are listed here by
|
|
|
|
|
package *name* and *version* if the change is release-specific.
|
|
|
|
|
|
|
|
|
|
**users**
|
|
|
|
|
Holds our user database - user name, email address and password.
|
|
|
|
|
|
|
|
|
|
**roles**
|
|
|
|
|
Maps *user_name* and *role_name* to a *package_name*.
|
|
|
|
|
|
|
|
|
|
An additional table, **rego_otk** holds the One Time Keys generated
|
|
|
|
|
during registration and is not interesting in the scope of the index
|
|
|
|
|
itself.
|
|
|
|
|
|
2002-11-07 21:59:18 -05:00
|
|
|
|
|
|
|
|
|
Distutils *register* Command
|
|
|
|
|
----------------------------
|
|
|
|
|
|
|
|
|
|
An additional Distutils command, ``register``, is implemented which
|
|
|
|
|
posts the package metadata to the central index. The *register*
|
|
|
|
|
command automatically handles user registration; the user is presented
|
|
|
|
|
with three options:
|
|
|
|
|
|
|
|
|
|
1. login and submit package information
|
|
|
|
|
2. register as a new packager
|
|
|
|
|
3. send password reminder email
|
|
|
|
|
|
|
|
|
|
On systems where the ``$HOME`` environment variable is set, the user
|
|
|
|
|
will be prompted at exit to save their username/password to a file
|
2002-11-20 17:08:48 -05:00
|
|
|
|
in their ``$HOME`` directory in the file ``.pypirc``.
|
2002-11-07 21:59:18 -05:00
|
|
|
|
|
|
|
|
|
Notification of changes to a package entry will be sent to all users
|
2003-04-27 09:48:39 -04:00
|
|
|
|
who have submitted information about the package. That is, the
|
|
|
|
|
original submitter and any subsequent updaters.
|
2002-11-07 21:59:18 -05:00
|
|
|
|
|
|
|
|
|
The *register* command will include a ``--verify`` option which
|
|
|
|
|
performs a test submission to the index without actually committing
|
|
|
|
|
the data. The index will perform its submission verification checks
|
|
|
|
|
as usual and report any errors it would have reported during a normal
|
|
|
|
|
submission. This is useful for verifying correctness of Trove
|
|
|
|
|
discriminators.
|
|
|
|
|
|
|
|
|
|
|
2002-11-20 17:08:48 -05:00
|
|
|
|
Distutils Trove Classification
|
2002-11-07 21:59:18 -05:00
|
|
|
|
------------------------------
|
|
|
|
|
|
|
|
|
|
The Trove concept of *discrimination* will be added to the metadata
|
|
|
|
|
set available to package authors through the new attribute
|
|
|
|
|
"classifiers". The list of classifiers will be available through the
|
|
|
|
|
web, and added to the package like so::
|
|
|
|
|
|
|
|
|
|
setup(
|
2017-03-24 17:11:33 -04:00
|
|
|
|
name = "roundup",
|
2002-11-07 21:59:18 -05:00
|
|
|
|
version = __version__,
|
|
|
|
|
classifiers = [
|
|
|
|
|
'Development Status :: 4 - Beta',
|
2002-11-20 17:08:48 -05:00
|
|
|
|
'Environment :: Console',
|
2002-11-07 21:59:18 -05:00
|
|
|
|
'Environment :: Web Environment',
|
|
|
|
|
'Intended Audience :: End Users/Desktop',
|
|
|
|
|
'Intended Audience :: Developers',
|
|
|
|
|
'Intended Audience :: System Administrators',
|
2002-11-20 17:08:48 -05:00
|
|
|
|
'License :: OSI Approved :: Python Software Foundation License',
|
|
|
|
|
'Operating System :: MacOS :: MacOS X',
|
2002-11-07 21:59:18 -05:00
|
|
|
|
'Operating System :: Microsoft :: Windows',
|
|
|
|
|
'Operating System :: POSIX',
|
|
|
|
|
'Programming Language :: Python',
|
|
|
|
|
'Topic :: Communications :: Email',
|
|
|
|
|
'Topic :: Office/Business',
|
|
|
|
|
'Topic :: Software Development :: Bug Tracking',
|
|
|
|
|
],
|
|
|
|
|
url = 'http://sourceforge.net/projects/roundup/',
|
|
|
|
|
...
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
It was decided that strings would be used for the classification
|
|
|
|
|
entries due to the deep nesting that would be involved in a more
|
|
|
|
|
formal Python structure.
|
|
|
|
|
|
|
|
|
|
The original Trove specification that classification namespaces be
|
|
|
|
|
separated by slashes ("/") unfortunately collides with many of the
|
|
|
|
|
names having slashes in them (e.g. "OS/2"). The double-colon solution
|
|
|
|
|
(" :: ") implemented by SourceForge and FreshMeat gets around this
|
|
|
|
|
limitation.
|
|
|
|
|
|
|
|
|
|
The list of classification values on the module index has been merged
|
|
|
|
|
from FreshMeat and SourceForge (with their permission). This list
|
2002-11-20 17:08:48 -05:00
|
|
|
|
will be made available both through the web interface and through the
|
2003-04-27 09:48:39 -04:00
|
|
|
|
*register* command's ``--list-classifiers`` option as a text list
|
2002-11-20 17:08:48 -05:00
|
|
|
|
which may then be copied to the ``setup.py`` file. The *register*
|
|
|
|
|
command's ``--verify`` option will check classifiers values against
|
|
|
|
|
the server's list.
|
2002-11-07 21:59:18 -05:00
|
|
|
|
|
|
|
|
|
Unfortunately, the addition of the "classifiers" property is not
|
|
|
|
|
backwards-compatible. A setup.py file using it will not work under
|
2003-04-27 09:48:39 -04:00
|
|
|
|
Python 2.1.3. It is hoped that a bug-fix release of Python 2.2 (most
|
2002-11-20 17:08:48 -05:00
|
|
|
|
likely 2.2.3) will relax the argument checking of the setup() command
|
|
|
|
|
to allow new keywords, even if they're not actually used. It is
|
|
|
|
|
preferable that a warning be produced, rather than a show-stopping
|
|
|
|
|
error. The use of the new keyword should be discouraged in situations
|
|
|
|
|
where the package is advertised as being compatible with python
|
|
|
|
|
versions earlier than 2.2.3 or 2.3.
|
|
|
|
|
|
|
|
|
|
In the PKG-INFO, the classifiers list items will appear as individual
|
|
|
|
|
``Classifier:`` entries::
|
|
|
|
|
|
2017-03-24 17:11:33 -04:00
|
|
|
|
Name: roundup
|
2002-11-20 17:08:48 -05:00
|
|
|
|
Version: 0.5.2
|
|
|
|
|
Classifier: Development Status :: 4 - Beta
|
|
|
|
|
Classifier: Environment :: Console (Text Based)
|
|
|
|
|
.
|
|
|
|
|
.
|
|
|
|
|
Classifier: Topic :: Software Development :: Bug Tracking
|
|
|
|
|
Url: http://sourceforge.net/projects/roundup/
|
2002-11-07 21:59:18 -05:00
|
|
|
|
|
|
|
|
|
|
2003-04-27 09:48:39 -04:00
|
|
|
|
Implementation
|
|
|
|
|
==============
|
2002-11-07 21:59:18 -05:00
|
|
|
|
|
2003-04-29 10:47:11 -04:00
|
|
|
|
The server is available at:
|
2002-11-07 21:59:18 -05:00
|
|
|
|
|
2003-04-27 09:48:39 -04:00
|
|
|
|
http://www.python.org/pypi
|
2002-11-07 21:59:18 -05:00
|
|
|
|
|
2003-04-27 09:48:39 -04:00
|
|
|
|
The code is available from the SourceForge project:
|
2002-11-07 21:59:18 -05:00
|
|
|
|
|
2003-04-27 09:48:39 -04:00
|
|
|
|
http://sourceforge.net/projects/pypi/
|
2002-11-07 21:59:18 -05:00
|
|
|
|
|
2003-04-27 09:48:39 -04:00
|
|
|
|
The *register* command has been integrated into Python 2.3.
|
2002-11-07 21:59:18 -05:00
|
|
|
|
|
2002-11-20 17:08:48 -05:00
|
|
|
|
|
2002-11-17 21:02:43 -05:00
|
|
|
|
Rejected Proposals
|
|
|
|
|
==================
|
|
|
|
|
|
|
|
|
|
Originally, the index server was to return custom headers (inspired by
|
2022-01-21 06:03:51 -05:00
|
|
|
|
:pep:`243`):
|
2002-11-17 21:02:43 -05:00
|
|
|
|
|
|
|
|
|
**X-Pypi-Status**
|
|
|
|
|
Either "success" or "fail".
|
|
|
|
|
|
|
|
|
|
**X-Pypi-Reason**
|
|
|
|
|
A description of the reason for failure, or additional information
|
|
|
|
|
in the case of a success.
|
|
|
|
|
|
2022-01-21 06:03:51 -05:00
|
|
|
|
However, it has been pointed out [6]_ that this is a bad scheme to
|
2003-04-27 09:48:39 -04:00
|
|
|
|
use.
|
2002-11-17 21:02:43 -05:00
|
|
|
|
|
|
|
|
|
|
2002-11-07 21:59:18 -05:00
|
|
|
|
References
|
|
|
|
|
==========
|
|
|
|
|
|
|
|
|
|
.. [1] Distutils packaging system
|
2008-10-02 08:51:05 -04:00
|
|
|
|
(http://docs.python.org/library/distutils.html)
|
2002-11-07 21:59:18 -05:00
|
|
|
|
|
|
|
|
|
.. [2] Trove
|
2008-01-09 08:28:05 -05:00
|
|
|
|
(http://www.catb.org/~esr/trove/)
|
2002-11-07 21:59:18 -05:00
|
|
|
|
|
|
|
|
|
.. [3] Vaults of Parnassus
|
|
|
|
|
(http://www.vex.net/parnassus/)
|
|
|
|
|
|
|
|
|
|
.. [4] CPAN
|
|
|
|
|
(http://www.cpan.org/)
|
|
|
|
|
|
|
|
|
|
.. [5] PAUSE
|
|
|
|
|
(http://pause.cpan.org/)
|
|
|
|
|
|
2022-01-21 06:03:51 -05:00
|
|
|
|
.. [6] [PEP243] upload status is bogus
|
2017-06-11 15:02:39 -04:00
|
|
|
|
(https://mail.python.org/pipermail/distutils-sig/2001-March/002262.html)
|
2002-11-17 21:02:43 -05:00
|
|
|
|
|
2002-11-07 21:59:18 -05:00
|
|
|
|
|
|
|
|
|
Copyright
|
|
|
|
|
=========
|
|
|
|
|
|
|
|
|
|
This document has been placed in the public domain.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Acknowledgements
|
|
|
|
|
================
|
|
|
|
|
|
2002-11-08 17:22:55 -05:00
|
|
|
|
Anthony Baxter, Martin v. Loewis and David Goodger for encouragement
|
|
|
|
|
and feedback during initial drafting.
|
2002-11-07 21:59:18 -05:00
|
|
|
|
|
|
|
|
|
A.M. Kuchling for support including hosting the second prototype.
|
|
|
|
|
|
2002-11-17 21:02:43 -05:00
|
|
|
|
Greg Stein for recommending that the register command interpret the
|
|
|
|
|
HTTP response codes rather than custom X-PyPI-* headers.
|
|
|
|
|
|
2002-11-07 21:59:18 -05:00
|
|
|
|
The many participants of the Distutils and Catalog SIGs for their
|
|
|
|
|
ideas over the years.
|
|
|
|
|
|
2004-09-27 21:05:40 -04:00
|
|
|
|
|
2002-11-07 21:59:18 -05:00
|
|
|
|
..
|
|
|
|
|
Local Variables:
|
|
|
|
|
mode: indented-text
|
|
|
|
|
indent-tabs-mode: nil
|
|
|
|
|
sentence-end-double-space: t
|
|
|
|
|
fill-column: 70
|
|
|
|
|
End:
|