blob: d3d0dec4de357fe334f9e7a444fb8288235dc080 [file] [log] [blame]
Éric Araujo3a9f58f2011-06-01 20:42:49 +02001.. _packaging-index:
2
3##############################
4 Distributing Python Projects
5##############################
6
Éric Araujoacf71b82011-06-02 16:43:25 +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.