Éric Araujo | 3a9f58f | 2011-06-01 20:42:49 +0200 | [diff] [blame] | 1 | .. _packaging-index: |
| 2 | |
| 3 | ############################## |
| 4 | Distributing Python Projects |
| 5 | ############################## |
| 6 | |
Éric Araujo | acf71b8 | 2011-06-02 16:43:25 +0200 | [diff] [blame] | 7 | :Authors: The Fellowship of the Packaging |
Éric Araujo | 3a9f58f | 2011-06-01 20:42:49 +0200 | [diff] [blame] | 8 | :Email: distutils-sig@python.org |
| 9 | :Release: |version| |
| 10 | :Date: |today| |
| 11 | |
| 12 | This document describes Packaging for Python authors, describing how to use the |
| 13 | module to make Python applications, packages or modules easily available to a |
| 14 | wider audience with very little overhead for build/release/install mechanics. |
| 15 | |
| 16 | .. toctree:: |
| 17 | :maxdepth: 2 |
| 18 | :numbered: |
| 19 | |
| 20 | tutorial |
| 21 | setupcfg |
| 22 | introduction |
| 23 | setupscript |
| 24 | configfile |
| 25 | sourcedist |
| 26 | builtdist |
| 27 | packageindex |
| 28 | uploading |
| 29 | examples |
| 30 | extending |
| 31 | commandhooks |
| 32 | commandref |
| 33 | |
| 34 | |
| 35 | .. seealso:: |
| 36 | |
| 37 | :ref:`packaging-install-index` |
| 38 | A user-centered manual which includes information on adding projects |
| 39 | into an existing Python installation. You do not need to be a Python |
| 40 | programmer to read this manual. |
| 41 | |
| 42 | :mod:`packaging` |
| 43 | A library reference for developers of packaging tools wanting to use |
| 44 | standalone building blocks like :mod:`~packaging.version` or |
| 45 | :mod:`~packaging.metadata`, or extend Packaging itself. |