blob: 7b5ffdda6aeb50d8a10035b0d3b740732f764882 [file] [log] [blame]
Greg Wardabc52162000-02-26 00:52:48 +00001\documentclass{howto}
2\usepackage{ltxmarkup}
Greg Wardfacb8db2000-04-09 04:32:40 +00003\usepackage{times}
Greg Ward16aafcd2000-04-09 04:06:44 +00004\usepackage{distutils}
Greg Wardabc52162000-02-26 00:52:48 +00005
Greg Ward16aafcd2000-04-09 04:06:44 +00006\title{Distributing Python Modules}
Greg Wardabc52162000-02-26 00:52:48 +00007
Greg Wardabc52162000-02-26 00:52:48 +00008\author{Greg Ward}
9\authoraddress{E-mail: \email{gward@python.net}}
10
Greg Ward16aafcd2000-04-09 04:06:44 +000011
Greg Wardabc52162000-02-26 00:52:48 +000012\begin{document}
13
Greg Wardfacb8db2000-04-09 04:32:40 +000014\maketitle
15\tableofcontents
Greg Ward16aafcd2000-04-09 04:06:44 +000016
17\section{Introduction}
Greg Warde78298a2000-04-28 17:12:24 +000018\label{intro}
Greg Ward16aafcd2000-04-09 04:06:44 +000019
20In the past, Python module developers have not had much infrastructure
21support for distributing modules, nor have Python users had much support
22for installing and maintaining third-party modules. With the
23introduction of the Python Distribution Utilities (Distutils for short)
24in Python 1.6, this situation should start to improve.
25
26This document only covers using the Distutils to distribute your Python
27modules. Using the Distutils does not tie you to Python 1.6, though:
28the Distutils work just fine with Python 1.5, and it is reasonable (and
29expected to become commonplace) to expect users of Python 1.5 to
30download and install the Distutils separately before they can install
31your modules. Python 1.6 users, of course, won't have to add anything
32to their Python installation in order to use the Distutils to install
33third-party modules.
34
35This document concentrates on the role of developer/distributor: if
36you're looking for information on installing Python modules, you should
37refer to the ``Installing Python Modules'' manual.
38
39
Greg Wardfacb8db2000-04-09 04:32:40 +000040\section{Concepts \& Terminology}
Greg Warde78298a2000-04-28 17:12:24 +000041\label{concepts}
Greg Ward16aafcd2000-04-09 04:06:44 +000042
43Using the Distutils is quite simple, both for module developers and for
44users/administrators installing third-party modules. As a developer,
45your responsibilites (apart from writing solid, well-documented and
46well-tested code, of course!) are:
47\begin{itemize}
48\item write a setup script (\file{setup.py} by convention)
49\item (optional) write a setup configuration file
50\item create a source distribution
51\item (optional) create one or more built (binary) distributions
52\end{itemize}
53Each of these tasks is covered in this document.
54
55Not all module developers have access to a multitude of platforms, so
56it's not always feasible to expect them to create a multitude of built
57distributions. It is hoped that a class of intermediaries, called
58\emph{packagers}, will arise to take address this need. Packagers will
59take source distributions released by module developers, build them on
60one or more platforms, and release the resulting built distributions.
61Thus, users on the most popular platforms will be able to install most
62popular Python module distributions in the most natural way for their
63platform, without having to run a single setup script or compile a line
64of code.
65
66
67\subsection{A simple example}
Greg Warde78298a2000-04-28 17:12:24 +000068\label{simple-example}
Greg Ward16aafcd2000-04-09 04:06:44 +000069
70The setup script is usually quite simple, although since it's written in
71Python, there are no arbitrary limits to what you can do. If all you
72want to do is distribute a module called \module{foo}, contained in a
73file \file{foo.py}, then you can get away with as little as this:
74\begin{verbatim}
75from distutils.core import setup
76setup (name = "foo",
77 version = "1.0",
78 py_modules = ["foo"])
79\end{verbatim}
80Some observations:
81\begin{itemize}
82\item all information that you supply to the Distutils is supplied as
Greg Wardfacb8db2000-04-09 04:32:40 +000083 keyword arguments to the \function{setup()} function
Greg Ward16aafcd2000-04-09 04:06:44 +000084\item those keyword arguments fall into two categories: package
85 meta-data (name, version number) and information about what's in the
86 package (list of pure modules, in this case)
87\item modules are specified by module name, not filename (the same will
88 hold true for packages and extensions)
89\item it's recommended that you supply a little more meta-data, in
90 particular your name, email address and a URL for the project
91\end{itemize}
92
93To create a source distribution for this module, you would run
94\begin{verbatim}
95python setup.py sdist
96\end{verbatim}
97which will create an archive file (e.g., tarball on Unix, zip file on
98Windows) containing your setup script, \file{setup.py}, and your module,
99\file{foo.py}. The archive file will be named \file{Foo-1.0.tar.gz} (or
100\file{.zip}), and will unpack into a directory \file{Foo-1.0}.
101
102If an end-user wishes to install your \module{foo} module, all she has
103to do is download \file{Foo-1.0.tar.gz}) (or \file{.zip}), unpack it,
104and---from the \file{Foo-1.0} directory---run
105\begin{verbatim}
106python setup.py install
107\end{verbatim}
108which will ultimately copy \file{foo.py} to the appropriate directory
109for third-party modules in their Python installation.
110
111This simple example demonstrates some fundamental concepts of the
112Distutils: first, both developers and installers have the same basic
113user interface, i.e. the setup script. The difference is which
114Distutils \emph{commands} they use: the \command{sdist} command is
115almost exclusively for module developers, while \command{install} is
116more often for installers (although most developers will want to install
117their own code occasionally).
118
119\XXX{only partially implemented}%
120If you want to make things really easy for your users, you can create
121one or more built distributions for them. For instance, if you are
122running on a Windows machine, and want to make things easy for other
123Windows users, you can create an executable installer (the most
124appropriate type of built distribution for this platform) with the
125\command{bdist\_wise} command. (Wise is the installation tool used to
126create Windows installers for Python itself, so we have adopted it for
127use by any Python module distribution. You'll need to have version XXX
128of Wise installed on your system for the \command{bdist\_wise} to work;
129it's available from \url{http://foo/bar/baz}. For example:
130\begin{verbatim}
131python setup.py bdist_wise
132\end{verbatim}
Greg Wardfacb8db2000-04-09 04:32:40 +0000133will create an executable installer, \file{Foo-1\_0.exe}, in the current
Greg Ward16aafcd2000-04-09 04:06:44 +0000134directory.
135
136\XXX{not implemented yet}
137Other \command{bdist\_*} commands exist for RPM-based Linux systems
138(\command{bdist\_rpm}), Debian-based Linux systems
139(\command{bdist\_deb}), ...
140
141
142\subsection{General Python terminology}
Greg Warde78298a2000-04-28 17:12:24 +0000143\label{python-terms}
Greg Ward16aafcd2000-04-09 04:06:44 +0000144
145If you're reading this document, you probably have a good idea of what
146modules, extensions, and so forth are. Nevertheless, just to be sure
147that everyone is operating from a common starting point, we offer the
148following glossary of common Python terms:
149\begin{description}
150\item[module] the basic unit of code reusability in Python: a block of
151 code imported by some other code. There are three types of modules
152 that concern us here: pure Python modules, extension modules, and
153 packages.
154\item[pure Python module] a module written in Python and contained in a
155 single \file{.py} file (and possibly associated \file{.pyc} and/or
156 \file{.pyo} files). Sometimes referred to as a ``pure module.''
157\item[extension module] a module written in the low-level language of
158 the Python implemention: C/C++ for CPython, Java for JPython.
159 Typically contained in a single dynamically loadable pre-compiled
160 file, e.g. a shared object (\file{.so}) file for CPython extensions on
161 Unix, a DLL (given the \file{.pyd} extension) for CPython extensions
162 on Windows, or a Java class file for JPython extensions.
163\item[package] a module that contains other modules; typically contained
164 in a directory in the filesystem and distinguished from other
165 directories by the presence of a file \file{\_\_init\_\_.py}.
166\end{description}
167
168
169\subsection{Distutils-specific terminology}
Greg Warde78298a2000-04-28 17:12:24 +0000170\label{distutils-term}
Greg Ward16aafcd2000-04-09 04:06:44 +0000171
172The following terms apply more specifically to the domain of
173distributing Python modules using the Distutils:
174\begin{description}
175\item[module distribution] a collection of Python modules distributed
176 together as a single downloadable resource and meant to be installed
177 \emph{en masse}. Examples of some well-known module distributions are
178 Numeric Python, PyXML, PIL (the Python Imaging Library), or
179 mxDateTime. (This would be called a \emph{package}, except that term
180 is already spoken for in the Python context: a single module
181 distribution may contain zero, one, or many Python packages.)
182\item[pure module distribution] a module distribution that contains only
183 pure Python modules and packages. Sometimes referred to as a ``pure
184 distribution.''
185\item[non-pure module distribution] a module distribution that contains
186 at least one extension module. Sometimes referred to as a ``non-pure
187 distribution.''
188\item[distribution root] the top-level directory of your source tree (or
189 source distribution); the directory where \file{setup.py} exists and
190 is run from
191\end{description}
192
193
194\section{Writing the Setup Script}
Greg Warde78298a2000-04-28 17:12:24 +0000195\label{setup-script}
Greg Ward16aafcd2000-04-09 04:06:44 +0000196
197The setup script is the centre of all activity in building,
198distributing, and installing modules using the Distutils. The main
199purpose of the setup script is to describe your module distribution to
Greg Wardd5767a52000-04-19 22:48:09 +0000200the Distutils, so that the various commands that operate on your modules
Greg Warde78298a2000-04-28 17:12:24 +0000201do the right thing. As we saw in section~\ref{simple-example}
Greg Wardd5767a52000-04-19 22:48:09 +0000202above, the setup script consists mainly of a call to \function{setup()},
203and all information supplied to the Distutils is suppled as keyword
Greg Wardfacb8db2000-04-09 04:32:40 +0000204arguments to \function{setup()}.
Greg Ward16aafcd2000-04-09 04:06:44 +0000205
206Here's a slightly more involved example, which we'll follow for the next
207couple of sections: the Distutils' own setup script. (Keep in mind that
208although the Distutils are included with Python 1.6, they also have an
209independent existence so that Python 1.5 users can use them to install
210other module distributions.)
211
212\begin{verbatim}
213#!/usr/bin/env python
214
215from distutils.core import setup
216
217setup (name = "Distutils",
218 version = "1.0",
219 description = "Python Module Distribution Utilities",
220 author = "Greg Ward",
221 author_email = "gward@python.net",
222 url = "http://www.python.org/sigs/distutils-sig/",
223
224 packages = ['distutils', 'distutils.command'],
225 )
226\end{verbatim}
227There are only two differences between this and the trivial one-file
Greg Warde78298a2000-04-28 17:12:24 +0000228distribution presented in section~\ref{simple-example}: more
Greg Ward16aafcd2000-04-09 04:06:44 +0000229meta-data, and the specification of pure Python modules by package,
230rather than by module. This is important since the Distutils consist of
231a couple of dozen modules split into (so far) two packages; an explicit
232list of every module would be tedious to generate and difficult to
233maintain.
234
Greg Ward46b98e32000-04-14 01:53:36 +0000235Note that any pathnames (files or directories) supplied in the setup
236script should be written using the Unix convention, i.e.
237slash-separated. The Distutils will take care of converting this
238platform-neutral representation to whatever is appropriate on your
239current platform before actually using the pathname. This makes your
240setup script portable across operating systems, which of course is one
241of the major goals of the Distutils. In this spirit, all pathnames in
242this document are slash-separated (Mac OS users should keep in mind that
243the \emph{absence} of a leading slash indicates a relative directory,
244the opposite of the Mac OS convention with colons).
245
Greg Ward16aafcd2000-04-09 04:06:44 +0000246
247\subsection{Package directories}
Greg Warde78298a2000-04-28 17:12:24 +0000248\label{package-dirs}
Greg Ward16aafcd2000-04-09 04:06:44 +0000249
250The \option{packages} option tells the Distutils to process (build,
251distribute, install, etc.) all pure Python modules found in each package
252mentioned in the \option{packages} list. In order to do this, of
253course, there has to be a correspondence between package names and
254directories in the filesystem. The default correspondence is the most
Greg Ward1ecc2512000-04-19 22:36:24 +0000255obvious one, i.e. package \module{distutils} is found in the directory
Greg Ward16aafcd2000-04-09 04:06:44 +0000256\file{distutils} relative to the distribution root. Thus, when you say
257\code{packages = ['foo']} in your setup script, you are promising that
258the Distutils will find a file \file{foo/\_\_init\_\_.py} (which might
259be spelled differently on your system, but you get the idea) relative to
260the directory where your setup script lives. (If you break this
261promise, the Distutils will issue a warning but process the broken
262package anyways.)
263
264If you use a different convention to lay out your source directory,
265that's no problem: you just have to supply the \option{package\_dir}
266option to tell the Distutils about your convention. For example, say
267you keep all Python source under \file{lib}, so that modules not in any
Greg Ward1ecc2512000-04-19 22:36:24 +0000268package are right in \file{lib}, modules in the \module{foo} package
Greg Ward16aafcd2000-04-09 04:06:44 +0000269are in \file{lib/foo}, and so forth. Then you would put
270\begin{verbatim}
271package_dir = {'': 'lib'}
272\end{verbatim}
273in your setup script. (The keys to this dictionary are package names,
274and an empty package name stands for the ``root package,'' i.e. no
275package at all. The values are directory names relative to your
276distribution root.) In this case, when you say
277\code{packages = ['foo']}, you are promising that the file
278\file{lib/foo/\_\_init\_\_.py} exists.
279
Greg Ward1ecc2512000-04-19 22:36:24 +0000280Another possible convention is to put the \module{foo} package right in
281\file{lib}, the \module{foo.bar} package in \file{lib/bar}, etc. This
Greg Ward16aafcd2000-04-09 04:06:44 +0000282would be written in the setup script as
283\begin{verbatim}
284package_dir = {'foo': 'lib'}
285\end{verbatim}
286Note that a \code{\var{package}: \var{dir}} entry in the
287\option{package\_dir} option implicitly applies to all packages below
Greg Ward1ecc2512000-04-19 22:36:24 +0000288\var{package}, so the \module{foo.bar} case is automatically handled
Greg Ward16aafcd2000-04-09 04:06:44 +0000289here. In this example, having \code{packages = ['foo', 'foo.bar']}
Greg Wardfacb8db2000-04-09 04:32:40 +0000290tells the Distutils to look for \file{lib/\_\_init\_\_.py} and
291\file{lib/bar/\_\_init\_\_.py}.
Greg Ward16aafcd2000-04-09 04:06:44 +0000292
293
294\subsection{Listing individual modules}
Greg Warde78298a2000-04-28 17:12:24 +0000295\label{listing-modules}
Greg Ward16aafcd2000-04-09 04:06:44 +0000296
297For a small module distribution, you might prefer to list all modules
298rather than listing packages---especially the case of a single module
299that goes in the ``root package'' (i.e., no package at all). This
Greg Warde78298a2000-04-28 17:12:24 +0000300simplest case was shown in section~\ref{simple-example}; here is a
Greg Ward16aafcd2000-04-09 04:06:44 +0000301slightly more involved example:
302\begin{verbatim}
303py_modules = ['mod1', 'pkg.mod2']
304\end{verbatim}
305This describes two modules, one of them in the ``root'' package, the
Greg Wardd5767a52000-04-19 22:48:09 +0000306other in the \module{pkg} package. Again, the default package/directory
307layout implies that these two modules can be found in \file{mod1.py} and
308\file{pkg/mod2.py}, and that \file{pkg/\_\_init\_\_.py} exists as well.
309And again, you can override the package/directory layout using the
310\option{package\_dir} option. \XXX{not sure if this is actually
311 true---must check!}
Greg Ward16aafcd2000-04-09 04:06:44 +0000312
313
314\section{Writing the Setup Configuration File}
Greg Warde78298a2000-04-28 17:12:24 +0000315\label{setup-config}
Greg Ward16aafcd2000-04-09 04:06:44 +0000316
317\XXX{not implemented yet!}
318
319Often, it's not possible to write down everything needed to build a
320distribution \emph{a priori}. You need to get some information from the
321user, or from the user's system, in order to proceed. For example, you
322might include an optional extension module that provides an interface to
323a particular C library. If that library is installed on the user's
324system, then you can build your optional extension---but you need to
325know where to find the header and library file. If it's not installed,
326you need to know this so you can omit your optional extension.
327
328The preferred way to do this, of course, would be for you to tell the
329Distutils which optional features (C libraries, system calls, external
330utilities, etc.) you're looking for, and it would inspect the user's
331system and try to find them. This functionality may appear in a future
332version of the Distutils, but it isn't there now. So, for the time
333being, we rely on the user building and installing your software to
334provide the necessary information. The vehicle for doing so is the
335setup configuration file, \file{setup.cfg}.
336
337\XXX{need more here!}
338
339
340\section{Creating a Source Distribution}
Greg Warde78298a2000-04-28 17:12:24 +0000341\label{source-dist}
Greg Ward16aafcd2000-04-09 04:06:44 +0000342
Greg Warde78298a2000-04-28 17:12:24 +0000343As shown in section~\ref{simple-example}, you use the
Greg Ward16aafcd2000-04-09 04:06:44 +0000344\command{sdist} command to create a source distribution. In the
345simplest case,
346\begin{verbatim}
347python setup.py sdist
348\end{verbatim}
349(assuming you haven't specified any \command{sdist} options in the setup
350script or config file), \command{sdist} creates the the archive of the
351default format for the current platform. The default formats are:
352\begin{tableii}{ll}{textrm}%
353 {Platform}{Default archive format for source distributions}
354 \lineii{Unix}{gzipped tar file (\file{.tar.gz})}
355 \lineii{Windows}{zip file}
356\end{tableii}
Greg Wardd5767a52000-04-19 22:48:09 +0000357You can specify as many formats as you like using the
358\longprogramopt{formats} option, for example:
Greg Ward16aafcd2000-04-09 04:06:44 +0000359\begin{verbatim}
360python setup.py sdist --formats=gztar,zip
361\end{verbatim}
362to create a gzipped tarball and a zip file. The available formats are:
Greg Ward46b98e32000-04-14 01:53:36 +0000363\begin{tableiii}{l|l|c}{code}%
364 {Format}{Description}{Notes}
365 \lineiii{zip}{zip file (\file{.zip})}{(1)}
366 \lineiii{gztar}{gzipped tar file (\file{.tar.gz})}{(2)}
367 \lineiii{ztar}{compressed tar file (\file{.tar.Z})}{}
368 \lineiii{tar}{tar file (\file{.tar})}{}
369\end{tableiii}
370
371\noindent Notes:
372\begin{description}
373\item[(1)] default on Windows
374\item[(2)] default on Unix
375\end{description}
Greg Ward16aafcd2000-04-09 04:06:44 +0000376
377
378\subsection{The manifest and manifest template}
Greg Warde78298a2000-04-28 17:12:24 +0000379\label{manifest}
Greg Ward16aafcd2000-04-09 04:06:44 +0000380
381Without any additional information, the \command{sdist} command puts a
382minimal set of files into the source distribution:
383\begin{itemize}
Greg Wardfacb8db2000-04-09 04:32:40 +0000384\item all Python source files implied by the \option{py\_modules} and
Greg Ward16aafcd2000-04-09 04:06:44 +0000385 \option{packages} options
Greg Wardfacb8db2000-04-09 04:32:40 +0000386\item all C source files mentioned in the \option{ext\_modules} or
Greg Ward16aafcd2000-04-09 04:06:44 +0000387 \option{libraries} options (\XXX{getting C library sources currently
Greg Wardfacb8db2000-04-09 04:32:40 +0000388 broken -- no get\_source\_files() method in build\_clib.py!})
Greg Ward16aafcd2000-04-09 04:06:44 +0000389\item anything that looks like a test script: \file{test/test*.py}
390 (currently, the Distutils don't do anything with test scripts except
391 include them in source distributions, but in the future there will be
392 a standard for testing Python module distributions)
393\item \file{README.txt} (or \file{README}) and \file{setup.py}
394\end{itemize}
395Sometimes this is enough, but usually you will want to specify
396additional files to distribute. The typical way to do this is to write
397a \emph{manifest template}, called \file{MANIFEST.in} by default. The
398\command{sdist} command processes this template and generates a manifest
399file, \file{MANIFEST}. (If you prefer, you can skip the manifest
400template and generate the manifest yourself: it just lists one file per
401line.)
402
403The manifest template has one command per line, where each command
404specifies a set of files to include or exclude from the source
405distribution. For an example, again we turn to the Distutils' own
406manifest template:
407\begin{verbatim}
408include *.txt
Greg Ward87da1ea2000-04-21 04:35:25 +0000409recursive-include examples *.txt *.py
Greg Ward16aafcd2000-04-09 04:06:44 +0000410prune examples/sample?/build
411\end{verbatim}
412The meanings should be fairly clear: include all files in the
413distribution root matching \code{*.txt}, all files anywhere under the
414\file{examples} directory matching \code{*.txt} or \code{*.py}, and
415exclude all directories matching \code{examples/sample?/build}. There
416are several other commands available in the manifest template
Greg Warde78298a2000-04-28 17:12:24 +0000417mini-language; see section~\ref{sdist-cmd}.
Greg Ward16aafcd2000-04-09 04:06:44 +0000418
419The order of commands in the manifest template very much matters:
420initially, we have the list of default files as described above, and
421each command in the template adds to or removes from that list of files.
422When we have fully processed the manifest template, we have our complete
423list of files. This list is written to the manifest for future
424reference, and then used to build the source distribution archive(s).
425
Greg Ward46b98e32000-04-14 01:53:36 +0000426Following the Distutils' own manifest template, let's trace how the
427\command{sdist} command will build the list of files to include in the
428Distutils source distribution:
Greg Ward16aafcd2000-04-09 04:06:44 +0000429\begin{enumerate}
430\item include all Python source files in the \file{distutils} and
431 \file{distutils/command} subdirectories (because packages
432 corresponding to those two directories were mentioned in the
433 \option{packages} option in the setup script)
434\item include \file{test/test*.py} (always included)
435\item include \file{README.txt} and \file{setup.py} (always included)
436\item include \file{*.txt} in the distribution root (this will find
437 \file{README.txt} a second time, but such redundancies are weeded out
438 later)
439\item in the sub-tree under \file{examples}, include anything matching
440 \file{*.txt}
441\item in the sub-tree under \file{examples}, include anything matching
442 \file{*.py}
443\item remove all files in the sub-trees starting at directories matching
444 \file{examples/sample?/build}---this may exclude files included by the
445 previous two steps, so it's important that the \code{prune} command in
446 the manifest template comes after the two \code{recursive-include}
447 commands
Greg Wardfacb8db2000-04-09 04:32:40 +0000448\end{enumerate}
Greg Ward16aafcd2000-04-09 04:06:44 +0000449
Greg Ward46b98e32000-04-14 01:53:36 +0000450Just like in the setup script, file and directory names in the manifest
451template should always be slash-separated; the Distutils will take care
452of converting them to the standard representation on your platform.
453That way, the manifest template is portable across operating systems.
454
Greg Ward16aafcd2000-04-09 04:06:44 +0000455
456\subsection{Manifest-related options}
Greg Warde78298a2000-04-28 17:12:24 +0000457\label{manifest-options}
Greg Ward16aafcd2000-04-09 04:06:44 +0000458
459The normal course of operations for the \command{sdist} command is as
460follows:
461\begin{itemize}
Greg Ward46b98e32000-04-14 01:53:36 +0000462\item if the manifest file, \file{MANIFEST} doesn't exist, read
463 \file{MANIFEST.in} and create the manifest
464\item if \file{MANIFEST.in} is more recent than \file{MANIFEST},
465 recreate \file{MANIFEST} by reading \file{MANIFEST.in}
Greg Ward16aafcd2000-04-09 04:06:44 +0000466\item use the list of files now in \file{MANIFEST} (either just
467 generated or read in) to create the source distribution archive(s)
468\end{itemize}
469There are a couple of options that modify this behaviour.
470
471First, you might want to force the manifest to be regenerated---for
472example, if you have added or removed files or directories that match an
473existing pattern in the manifest template, you should regenerate the
474manifest:
475\begin{verbatim}
476python setup.py sdist --force-manifest
477\end{verbatim}
478\XXX{this is stupid, but is there a better way to do it without
479 reprocessing MANIFEST.in every single bloody time?}
480
481Or, you might just want to (re)generate the manifest, but not create a
482source distribution:
483\begin{verbatim}
484python setup.py sdist --manifest-only
485\end{verbatim}
Greg Warda021aca2000-04-19 22:34:11 +0000486(\longprogramopt{manifest-only} implies \longprogramopt{force-manifest}.)
Greg Ward16aafcd2000-04-09 04:06:44 +0000487
488If you don't want to use the default file set, you can supply the
Greg Wardd5767a52000-04-19 22:48:09 +0000489\longprogramopt{no-defaults} option. If you use
490\longprogramopt{no-defaults} and don't supply a manifest template (or
491it's empty, or nothing matches the patterns in it), then your source
492distribution will be empty.
Greg Ward16aafcd2000-04-09 04:06:44 +0000493
494
495\section{Creating Built Distributions}
Greg Warde78298a2000-04-28 17:12:24 +0000496\label{built-dist}
Greg Ward16aafcd2000-04-09 04:06:44 +0000497
Greg Ward46b98e32000-04-14 01:53:36 +0000498A ``built distribution'' is what you're probably used to thinking of
499either as a ``binary package'' or an ``installer'' (depending on your
500background). It's not necessarily binary, though, because it might
501contain only Python source code and/or byte-code; and we don't call it a
502package, because that word is already spoken for in Python. (And
503``installer'' is a term specific to the Windows world. \XXX{do Mac
504 people use it?})
Greg Ward16aafcd2000-04-09 04:06:44 +0000505
Greg Ward46b98e32000-04-14 01:53:36 +0000506A built distribution is how you make life as easy as possible for
507installers of your module distribution: for users of RPM-based Linux
508systems, it's a binary RPM; for Windows users, it's an executable
509installer; for Debian-based Linux users, it's a Debian package; and so
510forth. Obviously, no one person will be able to create built
511distributions for every platform under the sun, so the Distutils is
512designed to enable module developers to concentrate on their
513specialty---writing code and creating source distributions---while an
514intermediary species of \emph{packager} springs up to turn source
515distributions into build distributions for as many platforms as there
516are packagers.
517
518Of course, the module developer could be his own packager; or the
519packager could be a volunteer ``out there'' somewhere who has access to
520a platform which the original developer does not; or it could be
521software periodically grabbing new source distributions and turning them
522into built distributions for as many platforms as the software has
523access to. Regardless of the nature of the beast, a packager uses the
524setup script and the \command{bdist} command family to generate built
525distributions.
526
527As a simple example, if I run the following command in the Distutils
528source tree:
529\begin{verbatim}
530python setup.py bdist
531\end{verbatim}
532then the Distutils builds my module distribution (the Distutils itself
533in this case), does a ``fake'' installation (also in the \file{build}
534directory), and creates the default type of built distribution for my
535platform. In Distutils 0.8, only two types of built distribution are
536supported: \code{gztar} (default on non-Linux Unix) and \code{zip}
537(default on Windows). Thus, the above command on a Unix system creates
538\file{Distutils-0.8.built-posix.tar.gz}; unpacking this tarball from
539Python's \filevar{prefix} directory installs the Distutils just as
540though you had downloaded the source distribution and run \code{python
541 setup.py install}. Obviously, for pure Python distributions, this
542isn't a huge win---but for non-pure distributions, which include
543extensions that would need to be compiled, it can mean the difference
544between someone being able to use your extensions or not.
545
546\XXX{filenames are inaccurate here!}
547
Greg Wardd5767a52000-04-19 22:48:09 +0000548The \command{bdist} command has a \longprogramopt{format} option,
549similar to the \command{sdist} command, that you can use to select which
550formats to generate: for example,
Greg Ward46b98e32000-04-14 01:53:36 +0000551\begin{verbatim}
552python setup.py bdist --format=zip
553\end{verbatim}
554would, when run on a Unix system, create
555\file{Distutils-0.8.built-posix.tar.gz}---again, this archive would be
556unpacked from Python's \filevar{prefix} directory to install the
557Distutils.
558
559The available formats for built distributions are:
560\begin{tableiii}{l|l|c}{code}%
561 {Format}{Description}{Notes}
562 \lineiii{zip}{zip file (\file{.zip})}{(1)}
563 \lineiii{gztar}{gzipped tar file (\file{.tar.gz})}{(2)}
564 \lineiii{ztar}{compressed tar file (\file{.tar.Z})}{}
565 \lineiii{tar}{tar file (\file{.tar})}{}
566 \lineiii{rpm}{RPM}{(3)}
567 \lineiii{srpm}{source RPM}{}
568 \lineiii{wise}{Wise installer for Windows}{}
569\end{tableiii}
570
571\noindent Notes:
572\begin{description}
573\item[(1)] default on Windows
574\item[(2)] default on Unix
575\item[(3)] not implemented yet; will be default on RPM-based Linux
576 systems
577\item[(5)] not implemented yet; will be default on Windows
578\end{description}
579
580You don't have to use the \command{bdist} command with the
Greg Wardd5767a52000-04-19 22:48:09 +0000581\longprogramopt{formats} option; you can also use the command that
582directly implements the format you're interested in. Many of these
Greg Ward46b98e32000-04-14 01:53:36 +0000583\command{bdist} ``sub-commands'' actually generate several similar
584formats; for instance, the \command{bdist\_dumb} command generates all
585the ``dumb'' archive formats (\code{tar}, \code{ztar}, \code{gztar}, and
586\code{zip}), and \command{bdist\_rpm} generates both binary and source
587RPMs. The \command{bdist} sub-commands, and the formats generated by
588each, are:
589\begin{tableii}{l|l}{command}%
590 {Command}{Formats}
591 \lineii{bdist\_dumb}{tar, ztar, gztar, zip}
592 \lineii{bdist\_rpm}{rpm, srpm}
593 \lineii{bdist\_wise}{wise}
594\end{tableii}
Greg Ward16aafcd2000-04-09 04:06:44 +0000595
596\section{Examples}
Greg Warde78298a2000-04-28 17:12:24 +0000597\label{examples}
Greg Ward16aafcd2000-04-09 04:06:44 +0000598
599
600\subsection{Pure Python distribution (by module)}
Greg Warde78298a2000-04-28 17:12:24 +0000601\label{pure-mod}
Greg Ward16aafcd2000-04-09 04:06:44 +0000602
603
604\subsection{Pure Python distribution (by package)}
Greg Warde78298a2000-04-28 17:12:24 +0000605\label{pure-pkg}
Greg Ward16aafcd2000-04-09 04:06:44 +0000606
607
608\subsection{Single extension module}
Greg Warde78298a2000-04-28 17:12:24 +0000609\label{single-ext}
Greg Ward16aafcd2000-04-09 04:06:44 +0000610
611
612\subsection{Multiple extension modules}
Greg Warde78298a2000-04-28 17:12:24 +0000613\label{multiple-ext}
Greg Ward16aafcd2000-04-09 04:06:44 +0000614
615
616\subsection{Putting it all together}
617
618
Greg Ward4a9e7222000-04-25 02:57:36 +0000619
620\section{Extending the Distutils}
Greg Warde78298a2000-04-28 17:12:24 +0000621\label{extending}
Greg Ward4a9e7222000-04-25 02:57:36 +0000622
623
624\subsection{Extending existing commands}
Greg Warde78298a2000-04-28 17:12:24 +0000625\label{extend-existing}
Greg Ward4a9e7222000-04-25 02:57:36 +0000626
627
628\subsection{Writing new commands}
Greg Warde78298a2000-04-28 17:12:24 +0000629\label{new-commands}
Greg Ward4a9e7222000-04-25 02:57:36 +0000630
631
632
Greg Ward16aafcd2000-04-09 04:06:44 +0000633\section{Reference}
Greg Warde78298a2000-04-28 17:12:24 +0000634\label{ref}
Greg Ward16aafcd2000-04-09 04:06:44 +0000635
636
Greg Wardfacb8db2000-04-09 04:32:40 +0000637\subsection{Building modules: the \protect\command{build} command family}
Greg Warde78298a2000-04-28 17:12:24 +0000638\label{build-cmds}
Greg Ward16aafcd2000-04-09 04:06:44 +0000639
Greg Wardfacb8db2000-04-09 04:32:40 +0000640\subsubsection{\protect\command{build}}
Greg Warde78298a2000-04-28 17:12:24 +0000641\label{build-cmd}
Greg Ward16aafcd2000-04-09 04:06:44 +0000642
Greg Wardfacb8db2000-04-09 04:32:40 +0000643\subsubsection{\protect\command{build\_py}}
Greg Warde78298a2000-04-28 17:12:24 +0000644\label{build-py-cmd}
Greg Ward16aafcd2000-04-09 04:06:44 +0000645
Greg Wardfacb8db2000-04-09 04:32:40 +0000646\subsubsection{\protect\command{build\_ext}}
Greg Warde78298a2000-04-28 17:12:24 +0000647\label{build-ext-cmd}
Greg Ward16aafcd2000-04-09 04:06:44 +0000648
Greg Wardfacb8db2000-04-09 04:32:40 +0000649\subsubsection{\protect\command{build\_clib}}
Greg Warde78298a2000-04-28 17:12:24 +0000650\label{build-clib-cmd}
Greg Ward16aafcd2000-04-09 04:06:44 +0000651
652
Greg Wardfacb8db2000-04-09 04:32:40 +0000653\subsection{Installing modules: the \protect\command{install} command family}
Greg Warde78298a2000-04-28 17:12:24 +0000654\label{install-cmd}
Greg Ward16aafcd2000-04-09 04:06:44 +0000655
Gregory P. Smith147e5f32000-05-12 00:58:18 +0000656The install command ensures that the build commands have been run and then
657runs the subcommands \command{install\_lib},
658\command{install\_data} and
659\command{install\_scripts}.
660
661\subsubsection{\protect\command{install\_lib}}
662\label{sec:install-lib-cmd}
663
664\subsubsection{\protect\command{install\_data}}
665\label{sec:install-data-cmd}
666This command installs all data files provided with the distribution.
667
668\subsubsection{\protect\command{install\_scripts}}
669\label{sec:install-scripts-cmd}
670This command installs all (Python) scripts in the distribution.
671
Greg Ward16aafcd2000-04-09 04:06:44 +0000672
Greg Wardfacb8db2000-04-09 04:32:40 +0000673\subsection{Cleaning up: the \protect\command{clean} command}
Greg Warde78298a2000-04-28 17:12:24 +0000674\label{clean-cmd}
Greg Ward16aafcd2000-04-09 04:06:44 +0000675
676
Greg Wardfacb8db2000-04-09 04:32:40 +0000677\subsection{Creating a source distribution: the \protect\command{sdist} command}
Greg Warde78298a2000-04-28 17:12:24 +0000678\label{sdist-cmd}
Greg Ward16aafcd2000-04-09 04:06:44 +0000679
680
681\XXX{fragment moved down from above: needs context!}
682The manifest template commands are:
683\begin{tableii}{ll}{command}{Command}{Description}
Greg Ward87da1ea2000-04-21 04:35:25 +0000684 \lineii{include \var{pat1} \var{pat2} ... }
685 {include all files matching any of the listed patterns}
686 \lineii{exclude \var{pat1} \var{pat2} ... }
687 {exclude all files matching any of the listed patterns}
688 \lineii{recursive-include \var{dir} \var{pat1} \var{pat2} ... }
689 {include all files under \var{dir} matching any of the listed patterns}
690 \lineii{recursive-exclude \var{dir} \var{pat1} \var{pat2} ...}
691 {exclude all files under \var{dir} matching any of the listed patterns}
692 \lineii{global-include \var{pat1} \var{pat2} ...}
693 {include all files anywhere in the source tree matching
694 any of the listed patterns}
695 \lineii{global-exclude \var{pat1} \var{pat2} ...}
696 {exclude all files anywhere in the source tree matching
697 any of the listed patterns}
Greg Ward16aafcd2000-04-09 04:06:44 +0000698 \lineii{prune \var{dir}}{exclude all files under \var{dir}}
699 \lineii{graft \var{dir}}{include all files under \var{dir}}
700\end{tableii}
701The patterns here are Unix-style ``glob'' patterns: \code{*} matches any
702sequence of regular filename characters, \code{?} matches any single
703regular filename character, and \code{[\var{range}]} matches any of the
704characters in \var{range} (e.g., \code{a-z}, \code{a-zA-Z},
Greg Wardfacb8db2000-04-09 04:32:40 +0000705\code{a-f0-9\_.}). The definition of ``regular filename character'' is
Greg Ward16aafcd2000-04-09 04:06:44 +0000706platform-specific: on Unix it is anything except slash; on Windows
707anything except backslash or colon; on Mac OS anything except colon.
708\XXX{Windows and Mac OS support not there yet}
709
710
Greg Wardd5767a52000-04-19 22:48:09 +0000711\subsection{Creating a ``built'' distribution: the
712 \protect\command{bdist} command family}
Greg Warde78298a2000-04-28 17:12:24 +0000713\label{bdist-cmds}
Greg Ward16aafcd2000-04-09 04:06:44 +0000714
715
Greg Wardfacb8db2000-04-09 04:32:40 +0000716\subsubsection{\protect\command{blib}}
Greg Ward16aafcd2000-04-09 04:06:44 +0000717
Greg Wardfacb8db2000-04-09 04:32:40 +0000718\subsubsection{\protect\command{blib\_dumb}}
Greg Ward16aafcd2000-04-09 04:06:44 +0000719
Greg Wardfacb8db2000-04-09 04:32:40 +0000720\subsubsection{\protect\command{blib\_rpm}}
Greg Ward16aafcd2000-04-09 04:06:44 +0000721
Greg Wardfacb8db2000-04-09 04:32:40 +0000722\subsubsection{\protect\command{blib\_wise}}
Greg Ward16aafcd2000-04-09 04:06:44 +0000723
724
725
726
727
728
729
730
Greg Wardabc52162000-02-26 00:52:48 +0000731\end{document}