blob: 0e8081803e156057c81319bdcf4b85043272a063 [file] [log] [blame]
Éric Araujo3a9f58f2011-06-01 20:42:49 +02001.. _packaging-index:
2
3##############################
4 Distributing Python Projects
5##############################
6
Tarek Ziadeab244392011-06-02 11:28:07 +02007:Authors: The Fellowship of The Packaging
Éric Araujo3a9f58f2011-06-01 20:42:49 +02008:Email: distutils-sig@python.org
9:Release: |version|
10:Date: |today|
11
12This document describes Packaging for Python authors, describing how to use the
13module to make Python applications, packages or modules easily available to a
14wider 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.