2007-08-15 11:28:01 -03:00
|
|
|
.. _package-index:
|
|
|
|
|
|
|
|
**********************************
|
|
|
|
Registering with the Package Index
|
|
|
|
**********************************
|
|
|
|
|
|
|
|
The Python Package Index (PyPI) holds meta-data describing distributions
|
|
|
|
packaged with distutils. The distutils command :command:`register` is used to
|
|
|
|
submit your distribution's meta-data to the index. It is invoked as follows::
|
|
|
|
|
2009-01-08 19:56:31 -04:00
|
|
|
python setup.py register
|
2007-08-15 11:28:01 -03:00
|
|
|
|
|
|
|
Distutils will respond with the following prompt::
|
|
|
|
|
2009-01-08 19:56:31 -04:00
|
|
|
running register
|
|
|
|
We need to know who you are, so please choose either:
|
|
|
|
1. use your existing login,
|
|
|
|
2. register as a new user,
|
|
|
|
3. have the server generate a new password for you (and email it to you), or
|
|
|
|
4. quit
|
|
|
|
Your selection [default 1]:
|
2007-08-15 11:28:01 -03:00
|
|
|
|
|
|
|
Note: if your username and password are saved locally, you will not see this
|
|
|
|
menu.
|
|
|
|
|
|
|
|
If you have not registered with PyPI, then you will need to do so now. You
|
|
|
|
should choose option 2, and enter your details as required. Soon after
|
|
|
|
submitting your details, you will receive an email which will be used to confirm
|
|
|
|
your registration.
|
|
|
|
|
|
|
|
Once you are registered, you may choose option 1 from the menu. You will be
|
|
|
|
prompted for your PyPI username and password, and :command:`register` will then
|
|
|
|
submit your meta-data to the index.
|
|
|
|
|
|
|
|
You may submit any number of versions of your distribution to the index. If you
|
|
|
|
alter the meta-data for a particular version, you may submit it again and the
|
|
|
|
index will be updated.
|
|
|
|
|
|
|
|
PyPI holds a record for each (name, version) combination submitted. The first
|
|
|
|
user to submit information for a given name is designated the Owner of that
|
|
|
|
name. They may submit changes through the :command:`register` command or through
|
|
|
|
the web interface. They may also designate other users as Owners or Maintainers.
|
|
|
|
Maintainers may edit the package information, but not designate other Owners or
|
|
|
|
Maintainers.
|
|
|
|
|
|
|
|
By default PyPI will list all versions of a given package. To hide certain
|
|
|
|
versions, the Hidden property should be set to yes. This must be edited through
|
|
|
|
the web interface.
|
|
|
|
|
|
|
|
|
|
|
|
.. _pypirc:
|
|
|
|
|
|
|
|
The .pypirc file
|
|
|
|
================
|
|
|
|
|
2008-02-22 08:31:45 -04:00
|
|
|
The format of the :file:`.pypirc` file is as follows::
|
2007-08-15 11:28:01 -03:00
|
|
|
|
2009-01-08 19:56:31 -04:00
|
|
|
[distutils]
|
|
|
|
index-servers =
|
|
|
|
pypi
|
2008-05-11 11:00:00 -03:00
|
|
|
|
2009-01-08 19:56:31 -04:00
|
|
|
[pypi]
|
|
|
|
repository: <repository-url>
|
|
|
|
username: <username>
|
|
|
|
password: <password>
|
2007-08-15 11:28:01 -03:00
|
|
|
|
2009-01-08 19:56:31 -04:00
|
|
|
The *distutils* section defines a *index-servers* variable that lists the
|
|
|
|
name of all sections describing a repository.
|
2007-08-15 11:28:01 -03:00
|
|
|
|
2009-01-08 19:56:31 -04:00
|
|
|
Each section describing a repository defines three variables:
|
2008-05-11 11:00:00 -03:00
|
|
|
|
2009-01-08 19:56:31 -04:00
|
|
|
- *repository*, that defines the url of the PyPI server. Defaults to
|
|
|
|
``http://www.python.org/pypi``.
|
|
|
|
- *username*, which is the registered username on the PyPI server.
|
|
|
|
- *password*, that will be used to authenticate. If omitted the user
|
|
|
|
will be prompt to type it when needed.
|
2009-01-03 16:55:06 -04:00
|
|
|
|
2009-01-08 19:56:31 -04:00
|
|
|
If you want to define another server a new section can be created and
|
|
|
|
listed in the *index-servers* variable::
|
2008-05-11 11:00:00 -03:00
|
|
|
|
2009-01-08 19:56:31 -04:00
|
|
|
[distutils]
|
|
|
|
index-servers =
|
|
|
|
pypi
|
|
|
|
other
|
2008-05-11 11:00:00 -03:00
|
|
|
|
2009-01-08 19:56:31 -04:00
|
|
|
[pypi]
|
|
|
|
repository: <repository-url>
|
|
|
|
username: <username>
|
|
|
|
password: <password>
|
2008-05-11 11:00:00 -03:00
|
|
|
|
2009-01-08 19:56:31 -04:00
|
|
|
[other]
|
|
|
|
repository: http://example.com/pypi
|
|
|
|
username: <username>
|
|
|
|
password: <password>
|
2008-05-11 11:00:00 -03:00
|
|
|
|
2009-01-08 19:56:31 -04:00
|
|
|
:command:`register` can then be called with the -r option to point the
|
|
|
|
repository to work with::
|
2008-05-11 11:00:00 -03:00
|
|
|
|
2009-01-08 19:56:31 -04:00
|
|
|
python setup.py register -r http://example.com/pypi
|
2007-08-15 11:28:01 -03:00
|
|
|
|
2009-03-13 16:03:58 -03:00
|
|
|
For convenience, the name of the section that describes the repository
|
|
|
|
may also be used::
|
2009-01-03 16:55:06 -04:00
|
|
|
|
2009-01-08 19:56:31 -04:00
|
|
|
python setup.py register -r other
|