| Greg Ward | abc5216 | 2000-02-26 00:52:48 +0000 | [diff] [blame] | 1 | \documentclass{howto} | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 2 | \usepackage{distutils} | 
| Greg Ward | abc5216 | 2000-02-26 00:52:48 +0000 | [diff] [blame] | 3 |  | 
| Greg Ward | b652897 | 2000-09-07 02:40:37 +0000 | [diff] [blame] | 4 | % $Id$ | 
 | 5 |  | 
| Andrew M. Kuchling | 40df710 | 2002-05-08 13:39:03 +0000 | [diff] [blame] | 6 | % TODO | 
 | 7 | %   Document extension.read_setup_file | 
 | 8 | %   Document build_clib command | 
 | 9 | % | 
 | 10 |  | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 11 | \title{Distributing Python Modules} | 
| Greg Ward | abc5216 | 2000-02-26 00:52:48 +0000 | [diff] [blame] | 12 |  | 
| Greg Ward | abc5216 | 2000-02-26 00:52:48 +0000 | [diff] [blame] | 13 | \author{Greg Ward} | 
| Fred Drake | 17f690f | 2001-07-14 02:14:42 +0000 | [diff] [blame] | 14 | \authoraddress{Email: \email{gward@python.net}} | 
| Greg Ward | abc5216 | 2000-02-26 00:52:48 +0000 | [diff] [blame] | 15 |  | 
| Greg Ward | e3cca26 | 2000-08-31 16:36:31 +0000 | [diff] [blame] | 16 | \makeindex | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 17 |  | 
| Greg Ward | abc5216 | 2000-02-26 00:52:48 +0000 | [diff] [blame] | 18 | \begin{document} | 
 | 19 |  | 
| Greg Ward | facb8db | 2000-04-09 04:32:40 +0000 | [diff] [blame] | 20 | \maketitle | 
| Greg Ward | e3cca26 | 2000-08-31 16:36:31 +0000 | [diff] [blame] | 21 | \begin{abstract} | 
 | 22 |   \noindent | 
 | 23 |   This document describes the Python Distribution Utilities | 
| Andrew M. Kuchling | d7abe2a | 2002-05-29 17:33:48 +0000 | [diff] [blame] | 24 |   (``Distutils'') from the module developer's point of view, describing | 
| Greg Ward | e3cca26 | 2000-08-31 16:36:31 +0000 | [diff] [blame] | 25 |   how to use the Distutils to make Python modules and extensions easily | 
 | 26 |   available to a wider audience with very little overhead for | 
 | 27 |   build/release/install mechanics. | 
 | 28 | \end{abstract} | 
 | 29 |  | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 30 | % The ugly "%begin{latexonly}" pseudo-environment supresses the table | 
 | 31 | % of contents for HTML generation. | 
 | 32 | % | 
 | 33 | %begin{latexonly} | 
| Greg Ward | facb8db | 2000-04-09 04:32:40 +0000 | [diff] [blame] | 34 | \tableofcontents | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 35 | %end{latexonly} | 
 | 36 |  | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 37 |  | 
 | 38 | \section{Introduction} | 
| Greg Ward | e78298a | 2000-04-28 17:12:24 +0000 | [diff] [blame] | 39 | \label{intro} | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 40 |  | 
| Andrew M. Kuchling | 40df710 | 2002-05-08 13:39:03 +0000 | [diff] [blame] | 41 | This document covers using the Distutils to distribute your Python | 
 | 42 | modules, concentrating on the role of developer/distributor: if | 
| Fred Drake | 01df453 | 2000-06-30 03:36:41 +0000 | [diff] [blame] | 43 | you're looking for information on installing Python modules, you | 
 | 44 | should refer to the \citetitle[../inst/inst.html]{Installing Python | 
 | 45 | Modules} manual. | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 46 |  | 
 | 47 |  | 
| Greg Ward | facb8db | 2000-04-09 04:32:40 +0000 | [diff] [blame] | 48 | \section{Concepts \& Terminology} | 
| Greg Ward | e78298a | 2000-04-28 17:12:24 +0000 | [diff] [blame] | 49 | \label{concepts} | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 50 |  | 
 | 51 | Using the Distutils is quite simple, both for module developers and for | 
 | 52 | users/administrators installing third-party modules.  As a developer, | 
| Thomas Heller | 5f52f72 | 2001-02-19 17:48:03 +0000 | [diff] [blame] | 53 | your responsibilities (apart from writing solid, well-documented and | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 54 | well-tested code, of course!) are: | 
 | 55 | \begin{itemize} | 
 | 56 | \item write a setup script (\file{setup.py} by convention) | 
 | 57 | \item (optional) write a setup configuration file | 
 | 58 | \item create a source distribution | 
 | 59 | \item (optional) create one or more built (binary) distributions | 
 | 60 | \end{itemize} | 
 | 61 | Each of these tasks is covered in this document. | 
 | 62 |  | 
 | 63 | Not all module developers have access to a multitude of platforms, so | 
 | 64 | it's not always feasible to expect them to create a multitude of built | 
 | 65 | distributions.  It is hoped that a class of intermediaries, called | 
| Greg Ward | 19c67f8 | 2000-06-24 01:33:16 +0000 | [diff] [blame] | 66 | \emph{packagers}, will arise to address this need.  Packagers will take | 
 | 67 | source distributions released by module developers, build them on one or | 
 | 68 | more platforms, and release the resulting built distributions.  Thus, | 
 | 69 | users on the most popular platforms will be able to install most popular | 
 | 70 | Python module distributions in the most natural way for their platform, | 
 | 71 | without having to run a single setup script or compile a line of code. | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 72 |  | 
 | 73 |  | 
| Andrew M. Kuchling | d7abe2a | 2002-05-29 17:33:48 +0000 | [diff] [blame] | 74 | \subsection{A Simple Example} | 
| Greg Ward | e78298a | 2000-04-28 17:12:24 +0000 | [diff] [blame] | 75 | \label{simple-example} | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 76 |  | 
| Andrew M. Kuchling | d7abe2a | 2002-05-29 17:33:48 +0000 | [diff] [blame] | 77 | The setup script is usually quite simple, although since it's written | 
 | 78 | in Python, there are no arbitrary limits to what you can do with it, | 
 | 79 | though you should be careful about putting arbitrarily expensive | 
 | 80 | operations in your setup script. Unlike, say, Autoconf-style configure | 
 | 81 | scripts, the setup script may be run multiple times in the course of | 
 | 82 | building and installing your module distribution.  If you need to | 
 | 83 | insert potentially expensive processing steps into the Distutils | 
 | 84 | chain, see section~\ref{extending} on extending the Distutils. | 
| Andrew M. Kuchling | 40df710 | 2002-05-08 13:39:03 +0000 | [diff] [blame] | 85 |  | 
 | 86 | If all you want to do is distribute a module called \module{foo}, | 
 | 87 | contained in a file \file{foo.py}, then your setup script can be as | 
| Andrew M. Kuchling | d7abe2a | 2002-05-29 17:33:48 +0000 | [diff] [blame] | 88 | simple as this: | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 89 |  | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 90 | \begin{verbatim} | 
 | 91 | from distutils.core import setup | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 92 | setup(name="foo", | 
 | 93 |       version="1.0", | 
 | 94 |       py_modules=["foo"]) | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 95 | \end{verbatim} | 
| Greg Ward | 370248d | 2000-06-24 01:45:47 +0000 | [diff] [blame] | 96 |  | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 97 | Some observations: | 
 | 98 | \begin{itemize} | 
| Greg Ward | 370248d | 2000-06-24 01:45:47 +0000 | [diff] [blame] | 99 | \item most information that you supply to the Distutils is supplied as | 
| Greg Ward | facb8db | 2000-04-09 04:32:40 +0000 | [diff] [blame] | 100 |   keyword arguments to the \function{setup()} function | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 101 | \item those keyword arguments fall into two categories: package | 
| Andrew M. Kuchling | d7abe2a | 2002-05-29 17:33:48 +0000 | [diff] [blame] | 102 |   metadata (name, version number) and information about what's in the | 
| Greg Ward | 370248d | 2000-06-24 01:45:47 +0000 | [diff] [blame] | 103 |   package (a list of pure Python modules, in this case) | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 104 | \item modules are specified by module name, not filename (the same will | 
 | 105 |   hold true for packages and extensions) | 
| Andrew M. Kuchling | d7abe2a | 2002-05-29 17:33:48 +0000 | [diff] [blame] | 106 | \item it's recommended that you supply a little more metadata, in | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 107 |   particular your name, email address and a URL for the project | 
| Greg Ward | 47f99a6 | 2000-09-04 20:07:15 +0000 | [diff] [blame] | 108 |   (see section~\ref{setup-script} for an example) | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 109 | \end{itemize} | 
 | 110 |  | 
| Greg Ward | 370248d | 2000-06-24 01:45:47 +0000 | [diff] [blame] | 111 | To create a source distribution for this module, you would create a | 
 | 112 | setup script, \file{setup.py}, containing the above code, and run: | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 113 |  | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 114 | \begin{verbatim} | 
 | 115 | python setup.py sdist | 
 | 116 | \end{verbatim} | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 117 |  | 
| Fred Drake | eff9a87 | 2000-10-26 16:41:03 +0000 | [diff] [blame] | 118 | which will create an archive file (e.g., tarball on \UNIX, ZIP file on | 
| Andrew M. Kuchling | d7abe2a | 2002-05-29 17:33:48 +0000 | [diff] [blame] | 119 | Windows) containing your setup script \file{setup.py}, and your module | 
| Andrew M. Kuchling | 40df710 | 2002-05-08 13:39:03 +0000 | [diff] [blame] | 120 | \file{foo.py}.  The archive file will be named \file{foo-1.0.tar.gz} (or | 
 | 121 | \file{.zip}), and will unpack into a directory \file{foo-1.0}. | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 122 |  | 
 | 123 | If an end-user wishes to install your \module{foo} module, all she has | 
| Andrew M. Kuchling | 40df710 | 2002-05-08 13:39:03 +0000 | [diff] [blame] | 124 | to do is download \file{foo-1.0.tar.gz} (or \file{.zip}), unpack it, | 
 | 125 | and---from the \file{foo-1.0} directory---run | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 126 |  | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 127 | \begin{verbatim} | 
 | 128 | python setup.py install | 
 | 129 | \end{verbatim} | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 130 |  | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 131 | which will ultimately copy \file{foo.py} to the appropriate directory | 
 | 132 | for third-party modules in their Python installation. | 
 | 133 |  | 
 | 134 | This simple example demonstrates some fundamental concepts of the | 
| Andrew M. Kuchling | d7abe2a | 2002-05-29 17:33:48 +0000 | [diff] [blame] | 135 | Distutils. First, both developers and installers have the same basic | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 136 | user interface, i.e. the setup script.  The difference is which | 
 | 137 | Distutils \emph{commands} they use: the \command{sdist} command is | 
 | 138 | almost exclusively for module developers, while \command{install} is | 
 | 139 | more often for installers (although most developers will want to install | 
 | 140 | their own code occasionally). | 
 | 141 |  | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 142 | If you want to make things really easy for your users, you can create | 
 | 143 | one or more built distributions for them.  For instance, if you are | 
 | 144 | running on a Windows machine, and want to make things easy for other | 
 | 145 | Windows users, you can create an executable installer (the most | 
 | 146 | appropriate type of built distribution for this platform) with the | 
| Greg Ward | 59d382e | 2000-05-26 01:04:47 +0000 | [diff] [blame] | 147 | \command{bdist\_wininst} command.  For example: | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 148 |  | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 149 | \begin{verbatim} | 
| Greg Ward | 59d382e | 2000-05-26 01:04:47 +0000 | [diff] [blame] | 150 | python setup.py bdist_wininst | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 151 | \end{verbatim} | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 152 |  | 
| Andrew M. Kuchling | 40df710 | 2002-05-08 13:39:03 +0000 | [diff] [blame] | 153 | will create an executable installer, \file{foo-1.0.win32.exe}, in the | 
| Greg Ward | 1d8f57a | 2000-08-05 00:43:11 +0000 | [diff] [blame] | 154 | current directory. | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 155 |  | 
| Andrew M. Kuchling | 40df710 | 2002-05-08 13:39:03 +0000 | [diff] [blame] | 156 | Other useful built distribution formats are RPM, implemented by the | 
 | 157 | \command{bdist\_rpm} command, Solaris \program{pkgtool} | 
| Andrew M. Kuchling | d7abe2a | 2002-05-29 17:33:48 +0000 | [diff] [blame] | 158 | (\command{bdist\_pkgtool}), and HP-UX \program{swinstall} | 
 | 159 | (\command{bdist_sdux}).  For example, the following command will | 
 | 160 | create an RPM file called \file{foo-1.0.noarch.rpm}: | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 161 |  | 
| Greg Ward | 1d8f57a | 2000-08-05 00:43:11 +0000 | [diff] [blame] | 162 | \begin{verbatim} | 
 | 163 | python setup.py bdist_rpm | 
 | 164 | \end{verbatim} | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 165 |  | 
| Andrew M. Kuchling | d7abe2a | 2002-05-29 17:33:48 +0000 | [diff] [blame] | 166 | (The \command{bdist\_rpm} command uses the \command{rpm} executable, | 
 | 167 | therefore this has to be run on an RPM-based system such as Red Hat | 
 | 168 | Linux, SuSE Linux, or Mandrake Linux.) | 
| Greg Ward | 1d8f57a | 2000-08-05 00:43:11 +0000 | [diff] [blame] | 169 |  | 
 | 170 | You can find out what distribution formats are available at any time by | 
 | 171 | running | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 172 |  | 
| Greg Ward | 1d8f57a | 2000-08-05 00:43:11 +0000 | [diff] [blame] | 173 | \begin{verbatim} | 
 | 174 | python setup.py bdist --help-formats | 
 | 175 | \end{verbatim} | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 176 |  | 
 | 177 |  | 
 | 178 | \subsection{General Python terminology} | 
| Greg Ward | e78298a | 2000-04-28 17:12:24 +0000 | [diff] [blame] | 179 | \label{python-terms} | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 180 |  | 
 | 181 | If you're reading this document, you probably have a good idea of what | 
 | 182 | modules, extensions, and so forth are.  Nevertheless, just to be sure | 
 | 183 | that everyone is operating from a common starting point, we offer the | 
 | 184 | following glossary of common Python terms: | 
 | 185 | \begin{description} | 
 | 186 | \item[module] the basic unit of code reusability in Python: a block of | 
| Greg Ward | 1d8f57a | 2000-08-05 00:43:11 +0000 | [diff] [blame] | 187 |   code imported by some other code.  Three types of modules concern us | 
 | 188 |   here: pure Python modules, extension modules, and packages. | 
| Andrew M. Kuchling | 40df710 | 2002-05-08 13:39:03 +0000 | [diff] [blame] | 189 |  | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 190 | \item[pure Python module] a module written in Python and contained in a | 
 | 191 |   single \file{.py} file (and possibly associated \file{.pyc} and/or | 
 | 192 |   \file{.pyo} files).  Sometimes referred to as a ``pure module.'' | 
| Andrew M. Kuchling | 40df710 | 2002-05-08 13:39:03 +0000 | [diff] [blame] | 193 |  | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 194 | \item[extension module] a module written in the low-level language of | 
| Andrew M. Kuchling | 40df710 | 2002-05-08 13:39:03 +0000 | [diff] [blame] | 195 |   the Python implementation: C/C++ for Python, Java for Jython. | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 196 |   Typically contained in a single dynamically loadable pre-compiled | 
| Fred Drake | eff9a87 | 2000-10-26 16:41:03 +0000 | [diff] [blame] | 197 |   file, e.g. a shared object (\file{.so}) file for Python extensions on | 
 | 198 |   \UNIX, a DLL (given the \file{.pyd} extension) for Python extensions | 
| Andrew M. Kuchling | 40df710 | 2002-05-08 13:39:03 +0000 | [diff] [blame] | 199 |   on Windows, or a Java class file for Jython extensions.  (Note that | 
| Fred Drake | eff9a87 | 2000-10-26 16:41:03 +0000 | [diff] [blame] | 200 |   currently, the Distutils only handles C/C++ extensions for Python.) | 
| Andrew M. Kuchling | 40df710 | 2002-05-08 13:39:03 +0000 | [diff] [blame] | 201 |  | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 202 | \item[package] a module that contains other modules; typically contained | 
 | 203 |   in a directory in the filesystem and distinguished from other | 
 | 204 |   directories by the presence of a file \file{\_\_init\_\_.py}. | 
| Andrew M. Kuchling | 40df710 | 2002-05-08 13:39:03 +0000 | [diff] [blame] | 205 |  | 
| Greg Ward | 6153fa1 | 2000-05-26 02:24:28 +0000 | [diff] [blame] | 206 | \item[root package] the root of the hierarchy of packages.  (This isn't | 
 | 207 |   really a package, since it doesn't have an \file{\_\_init\_\_.py} | 
 | 208 |   file.  But we have to call it something.)  The vast majority of the | 
 | 209 |   standard library is in the root package, as are many small, standalone | 
 | 210 |   third-party modules that don't belong to a larger module collection. | 
 | 211 |   Unlike regular packages, modules in the root package can be found in | 
 | 212 |   many directories: in fact, every directory listed in \code{sys.path} | 
| Andrew M. Kuchling | d7abe2a | 2002-05-29 17:33:48 +0000 | [diff] [blame] | 213 |   contributes modules to the root package. | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 214 | \end{description} | 
 | 215 |  | 
 | 216 |  | 
 | 217 | \subsection{Distutils-specific terminology} | 
| Greg Ward | e78298a | 2000-04-28 17:12:24 +0000 | [diff] [blame] | 218 | \label{distutils-term} | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 219 |  | 
 | 220 | The following terms apply more specifically to the domain of | 
 | 221 | distributing Python modules using the Distutils: | 
 | 222 | \begin{description} | 
 | 223 | \item[module distribution] a collection of Python modules distributed | 
 | 224 |   together as a single downloadable resource and meant to be installed | 
 | 225 |   \emph{en masse}.  Examples of some well-known module distributions are | 
 | 226 |   Numeric Python, PyXML, PIL (the Python Imaging Library), or | 
| Andrew M. Kuchling | 40df710 | 2002-05-08 13:39:03 +0000 | [diff] [blame] | 227 |   mxBase.  (This would be called a \emph{package}, except that term | 
| Greg Ward | 59d382e | 2000-05-26 01:04:47 +0000 | [diff] [blame] | 228 |   is already taken in the Python context: a single module distribution | 
 | 229 |   may contain zero, one, or many Python packages.) | 
| Andrew M. Kuchling | 40df710 | 2002-05-08 13:39:03 +0000 | [diff] [blame] | 230 |  | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 231 | \item[pure module distribution] a module distribution that contains only | 
 | 232 |   pure Python modules and packages.  Sometimes referred to as a ``pure | 
 | 233 |   distribution.'' | 
| Andrew M. Kuchling | 40df710 | 2002-05-08 13:39:03 +0000 | [diff] [blame] | 234 |  | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 235 | \item[non-pure module distribution] a module distribution that contains | 
 | 236 |   at least one extension module.  Sometimes referred to as a ``non-pure | 
 | 237 |   distribution.'' | 
| Andrew M. Kuchling | 40df710 | 2002-05-08 13:39:03 +0000 | [diff] [blame] | 238 |  | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 239 | \item[distribution root] the top-level directory of your source tree (or  | 
| Andrew M. Kuchling | 40df710 | 2002-05-08 13:39:03 +0000 | [diff] [blame] | 240 |   source distribution); the directory where \file{setup.py} exists.  Generally  | 
 | 241 |   \file{setup.py} will be run from this directory. | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 242 | \end{description} | 
 | 243 |  | 
 | 244 |  | 
 | 245 | \section{Writing the Setup Script} | 
| Greg Ward | e78298a | 2000-04-28 17:12:24 +0000 | [diff] [blame] | 246 | \label{setup-script} | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 247 |  | 
 | 248 | The setup script is the centre of all activity in building, | 
 | 249 | distributing, and installing modules using the Distutils.  The main | 
 | 250 | purpose of the setup script is to describe your module distribution to | 
| Greg Ward | d5767a5 | 2000-04-19 22:48:09 +0000 | [diff] [blame] | 251 | the Distutils, so that the various commands that operate on your modules | 
| Greg Ward | 59d382e | 2000-05-26 01:04:47 +0000 | [diff] [blame] | 252 | do the right thing.  As we saw in section~\ref{simple-example} above, | 
 | 253 | the setup script consists mainly of a call to \function{setup()}, and | 
| Greg Ward | 1bbe329 | 2000-06-25 03:14:13 +0000 | [diff] [blame] | 254 | most information supplied to the Distutils by the module developer is | 
 | 255 | supplied as keyword arguments to \function{setup()}. | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 256 |  | 
 | 257 | Here's a slightly more involved example, which we'll follow for the next | 
 | 258 | couple of sections: the Distutils' own setup script.  (Keep in mind that | 
| Greg Ward | 1d8f57a | 2000-08-05 00:43:11 +0000 | [diff] [blame] | 259 | although the Distutils are included with Python 1.6 and later, they also | 
 | 260 | have an independent existence so that Python 1.5.2 users can use them to | 
 | 261 | install other module distributions.  The Distutils' own setup script, | 
 | 262 | shown here, is used to install the package into Python 1.5.2.) | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 263 |  | 
 | 264 | \begin{verbatim} | 
 | 265 | #!/usr/bin/env python | 
 | 266 |  | 
 | 267 | from distutils.core import setup | 
 | 268 |  | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 269 | setup(name="Distutils", | 
 | 270 |       version="1.0", | 
 | 271 |       description="Python Distribution Utilities", | 
 | 272 |       author="Greg Ward", | 
 | 273 |       author_email="gward@python.net", | 
 | 274 |       url="http://www.python.org/sigs/distutils-sig/", | 
 | 275 |       packages=['distutils', 'distutils.command'], | 
 | 276 |      ) | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 277 | \end{verbatim} | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 278 |  | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 279 | There are only two differences between this and the trivial one-file | 
| Greg Ward | e78298a | 2000-04-28 17:12:24 +0000 | [diff] [blame] | 280 | distribution presented in section~\ref{simple-example}: more | 
| Andrew M. Kuchling | d7abe2a | 2002-05-29 17:33:48 +0000 | [diff] [blame] | 281 | metadata, and the specification of pure Python modules by package, | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 282 | rather than by module.  This is important since the Distutils consist of | 
 | 283 | a couple of dozen modules split into (so far) two packages; an explicit | 
 | 284 | list of every module would be tedious to generate and difficult to | 
 | 285 | maintain. | 
 | 286 |  | 
| Greg Ward | 46b98e3 | 2000-04-14 01:53:36 +0000 | [diff] [blame] | 287 | Note that any pathnames (files or directories) supplied in the setup | 
| Fred Drake | eff9a87 | 2000-10-26 16:41:03 +0000 | [diff] [blame] | 288 | script should be written using the \UNIX{} convention, i.e. | 
| Greg Ward | 46b98e3 | 2000-04-14 01:53:36 +0000 | [diff] [blame] | 289 | slash-separated.  The Distutils will take care of converting this | 
| Greg Ward | 59d382e | 2000-05-26 01:04:47 +0000 | [diff] [blame] | 290 | platform-neutral representation into whatever is appropriate on your | 
| Greg Ward | 46b98e3 | 2000-04-14 01:53:36 +0000 | [diff] [blame] | 291 | current platform before actually using the pathname.  This makes your | 
 | 292 | setup script portable across operating systems, which of course is one | 
 | 293 | of the major goals of the Distutils.  In this spirit, all pathnames in | 
| Andrew M. Kuchling | 40df710 | 2002-05-08 13:39:03 +0000 | [diff] [blame] | 294 | this document are slash-separated.  (MacOS programmers should keep in | 
| Greg Ward | 59d382e | 2000-05-26 01:04:47 +0000 | [diff] [blame] | 295 | mind that the \emph{absence} of a leading slash indicates a relative | 
| Andrew M. Kuchling | 40df710 | 2002-05-08 13:39:03 +0000 | [diff] [blame] | 296 | path, the opposite of the MacOS convention with colons.) | 
| Greg Ward | 46b98e3 | 2000-04-14 01:53:36 +0000 | [diff] [blame] | 297 |  | 
| Andrew M. Kuchling | d7abe2a | 2002-05-29 17:33:48 +0000 | [diff] [blame] | 298 | This, of course, only applies to pathnames given to Distutils | 
 | 299 | functions.  If you, for example, use standard python functions such as | 
 | 300 | \function{glob.glob} or \function{os.listdir} to specify files, you | 
 | 301 | should be careful to write portable code instead of hardcoding path | 
 | 302 | separators: | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 303 |  | 
| Thomas Heller | 5f52f72 | 2001-02-19 17:48:03 +0000 | [diff] [blame] | 304 | \begin{verbatim} | 
 | 305 |     glob.glob(os.path.join('mydir', 'subdir', '*.html')) | 
 | 306 |     os.listdir(os.path.join('mydir', 'subdir')) | 
 | 307 | \end{verbatim} | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 308 |  | 
| Andrew M. Kuchling | d7abe2a | 2002-05-29 17:33:48 +0000 | [diff] [blame] | 309 |  | 
| Greg Ward | 2afffd4 | 2000-08-06 20:37:24 +0000 | [diff] [blame] | 310 | \subsection{Listing whole packages} | 
 | 311 | \label{listing-packages} | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 312 |  | 
 | 313 | The \option{packages} option tells the Distutils to process (build, | 
 | 314 | distribute, install, etc.) all pure Python modules found in each package | 
 | 315 | mentioned in the \option{packages} list.  In order to do this, of | 
 | 316 | course, there has to be a correspondence between package names and | 
 | 317 | directories in the filesystem.  The default correspondence is the most | 
| Greg Ward | 1ecc251 | 2000-04-19 22:36:24 +0000 | [diff] [blame] | 318 | obvious one, i.e. package \module{distutils} is found in the directory | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 319 | \file{distutils} relative to the distribution root.  Thus, when you say | 
 | 320 | \code{packages = ['foo']} in your setup script, you are promising that | 
 | 321 | the Distutils will find a file \file{foo/\_\_init\_\_.py} (which might | 
 | 322 | be spelled differently on your system, but you get the idea) relative to | 
| Andrew M. Kuchling | d7abe2a | 2002-05-29 17:33:48 +0000 | [diff] [blame] | 323 | the directory where your setup script lives.  If you break this | 
 | 324 | promise, the Distutils will issue a warning but still process the broken | 
 | 325 | package anyways. | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 326 |  | 
 | 327 | If you use a different convention to lay out your source directory, | 
 | 328 | that's no problem: you just have to supply the \option{package\_dir} | 
 | 329 | option to tell the Distutils about your convention.  For example, say | 
| Greg Ward | 1d8f57a | 2000-08-05 00:43:11 +0000 | [diff] [blame] | 330 | you keep all Python source under \file{lib}, so that modules in the | 
| Andrew M. Kuchling | d7abe2a | 2002-05-29 17:33:48 +0000 | [diff] [blame] | 331 | ``root package'' (i.e., not in any package at all) are in | 
| Greg Ward | 1d8f57a | 2000-08-05 00:43:11 +0000 | [diff] [blame] | 332 | \file{lib}, modules in the \module{foo} package are in \file{lib/foo}, | 
 | 333 | and so forth.  Then you would put | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 334 |  | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 335 | \begin{verbatim} | 
 | 336 | package_dir = {'': 'lib'} | 
 | 337 | \end{verbatim} | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 338 |  | 
| Andrew M. Kuchling | 40df710 | 2002-05-08 13:39:03 +0000 | [diff] [blame] | 339 | in your setup script.  The keys to this dictionary are package names, | 
| Greg Ward | 1d8f57a | 2000-08-05 00:43:11 +0000 | [diff] [blame] | 340 | and an empty package name stands for the root package.  The values are | 
| Andrew M. Kuchling | 40df710 | 2002-05-08 13:39:03 +0000 | [diff] [blame] | 341 | directory names relative to your distribution root.  In this case, when | 
| Greg Ward | 1d8f57a | 2000-08-05 00:43:11 +0000 | [diff] [blame] | 342 | you say \code{packages = ['foo']}, you are promising that the file | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 343 | \file{lib/foo/\_\_init\_\_.py} exists. | 
 | 344 |  | 
| Greg Ward | 1ecc251 | 2000-04-19 22:36:24 +0000 | [diff] [blame] | 345 | Another possible convention is to put the \module{foo} package right in  | 
 | 346 | \file{lib}, the \module{foo.bar} package in \file{lib/bar}, etc.  This | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 347 | would be written in the setup script as | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 348 |  | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 349 | \begin{verbatim} | 
 | 350 | package_dir = {'foo': 'lib'} | 
 | 351 | \end{verbatim} | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 352 |  | 
| Greg Ward | 59d382e | 2000-05-26 01:04:47 +0000 | [diff] [blame] | 353 | A \code{\var{package}: \var{dir}} entry in the \option{package\_dir} | 
 | 354 | dictionary implicitly applies to all packages below \var{package}, so | 
 | 355 | the \module{foo.bar} case is automatically handled here.  In this | 
 | 356 | example, having \code{packages = ['foo', 'foo.bar']} tells the Distutils | 
 | 357 | to look for \file{lib/\_\_init\_\_.py} and | 
 | 358 | \file{lib/bar/\_\_init\_\_.py}.  (Keep in mind that although | 
 | 359 | \option{package\_dir} applies recursively, you must explicitly list all | 
 | 360 | packages in \option{packages}: the Distutils will \emph{not} recursively | 
 | 361 | scan your source tree looking for any directory with an | 
 | 362 | \file{\_\_init\_\_.py} file.) | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 363 |  | 
 | 364 |  | 
 | 365 | \subsection{Listing individual modules} | 
| Greg Ward | e78298a | 2000-04-28 17:12:24 +0000 | [diff] [blame] | 366 | \label{listing-modules} | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 367 |  | 
 | 368 | For a small module distribution, you might prefer to list all modules | 
 | 369 | rather than listing packages---especially the case of a single module | 
 | 370 | that goes in the ``root package'' (i.e., no package at all).  This | 
| Greg Ward | e78298a | 2000-04-28 17:12:24 +0000 | [diff] [blame] | 371 | simplest case was shown in section~\ref{simple-example}; here is a | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 372 | slightly more involved example: | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 373 |  | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 374 | \begin{verbatim} | 
 | 375 | py_modules = ['mod1', 'pkg.mod2'] | 
 | 376 | \end{verbatim} | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 377 |  | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 378 | This describes two modules, one of them in the ``root'' package, the | 
| Greg Ward | d5767a5 | 2000-04-19 22:48:09 +0000 | [diff] [blame] | 379 | other in the \module{pkg} package.  Again, the default package/directory | 
 | 380 | layout implies that these two modules can be found in \file{mod1.py} and | 
 | 381 | \file{pkg/mod2.py}, and that \file{pkg/\_\_init\_\_.py} exists as well. | 
| Greg Ward | 2afffd4 | 2000-08-06 20:37:24 +0000 | [diff] [blame] | 382 | And again, you can override the package/directory correspondence using | 
 | 383 | the \option{package\_dir} option. | 
| Greg Ward | 59d382e | 2000-05-26 01:04:47 +0000 | [diff] [blame] | 384 |  | 
 | 385 |  | 
 | 386 | \subsection{Describing extension modules} | 
| Greg Ward | 1365a30 | 2000-08-31 14:47:05 +0000 | [diff] [blame] | 387 | \label{describing-extensions} | 
| Greg Ward | 59d382e | 2000-05-26 01:04:47 +0000 | [diff] [blame] | 388 |  | 
| Andrew M. Kuchling | d7abe2a | 2002-05-29 17:33:48 +0000 | [diff] [blame] | 389 | % XXX read over this section | 
| Greg Ward | 2afffd4 | 2000-08-06 20:37:24 +0000 | [diff] [blame] | 390 | Just as writing Python extension modules is a bit more complicated than | 
 | 391 | writing pure Python modules, describing them to the Distutils is a bit | 
 | 392 | more complicated.  Unlike pure modules, it's not enough just to list | 
 | 393 | modules or packages and expect the Distutils to go out and find the | 
 | 394 | right files; you have to specify the extension name, source file(s), and | 
 | 395 | any compile/link requirements (include directories, libraries to link | 
 | 396 | with, etc.). | 
 | 397 |  | 
 | 398 | All of this is done through another keyword argument to | 
 | 399 | \function{setup()}, the \option{extensions} option.  \option{extensions} | 
 | 400 | is just a list of \class{Extension} instances, each of which describes a | 
 | 401 | single extension module.  Suppose your distribution includes a single | 
 | 402 | extension, called \module{foo} and implemented by \file{foo.c}.  If no | 
 | 403 | additional instructions to the compiler/linker are needed, describing | 
 | 404 | this extension is quite simple: | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 405 |  | 
| Greg Ward | 2afffd4 | 2000-08-06 20:37:24 +0000 | [diff] [blame] | 406 | \begin{verbatim} | 
| Andrew M. Kuchling | 40df710 | 2002-05-08 13:39:03 +0000 | [diff] [blame] | 407 | uExtension("foo", ["foo.c"]) | 
| Greg Ward | 2afffd4 | 2000-08-06 20:37:24 +0000 | [diff] [blame] | 408 | \end{verbatim} | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 409 |  | 
| Greg Ward | 2afffd4 | 2000-08-06 20:37:24 +0000 | [diff] [blame] | 410 | The \class{Extension} class can be imported from | 
| Andrew M. Kuchling | 40df710 | 2002-05-08 13:39:03 +0000 | [diff] [blame] | 411 | \module{distutils.core} along with \function{setup()}.  Thus, the setup | 
| Greg Ward | 2afffd4 | 2000-08-06 20:37:24 +0000 | [diff] [blame] | 412 | script for a module distribution that contains only this one extension | 
 | 413 | and nothing else might be: | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 414 |  | 
| Greg Ward | 2afffd4 | 2000-08-06 20:37:24 +0000 | [diff] [blame] | 415 | \begin{verbatim} | 
 | 416 | from distutils.core import setup, Extension | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 417 | setup(name="foo", version="1.0", | 
 | 418 |       ext_modules=[Extension("foo", ["foo.c"])]) | 
| Greg Ward | 2afffd4 | 2000-08-06 20:37:24 +0000 | [diff] [blame] | 419 | \end{verbatim} | 
 | 420 |  | 
 | 421 | The \class{Extension} class (actually, the underlying extension-building | 
| Andrew M. Kuchling | da23c4f | 2001-02-17 00:38:48 +0000 | [diff] [blame] | 422 | machinery implemented by the \command{build\_ext} command) supports a | 
| Greg Ward | 2afffd4 | 2000-08-06 20:37:24 +0000 | [diff] [blame] | 423 | great deal of flexibility in describing Python extensions, which is | 
 | 424 | explained in the following sections.   | 
 | 425 |  | 
 | 426 |  | 
 | 427 | \subsubsection{Extension names and packages} | 
 | 428 |  | 
 | 429 | The first argument to the \class{Extension} constructor is always the | 
 | 430 | name of the extension, including any package names.  For example, | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 431 |  | 
| Greg Ward | 2afffd4 | 2000-08-06 20:37:24 +0000 | [diff] [blame] | 432 | \begin{verbatim} | 
 | 433 | Extension("foo", ["src/foo1.c", "src/foo2.c"]) | 
 | 434 | \end{verbatim} | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 435 |  | 
| Greg Ward | 2afffd4 | 2000-08-06 20:37:24 +0000 | [diff] [blame] | 436 | describes an extension that lives in the root package, while | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 437 |  | 
| Greg Ward | 2afffd4 | 2000-08-06 20:37:24 +0000 | [diff] [blame] | 438 | \begin{verbatim} | 
 | 439 | Extension("pkg.foo", ["src/foo1.c", "src/foo2.c"]) | 
 | 440 | \end{verbatim} | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 441 |  | 
| Greg Ward | 2afffd4 | 2000-08-06 20:37:24 +0000 | [diff] [blame] | 442 | describes the same extension in the \module{pkg} package.  The source | 
 | 443 | files and resulting object code are identical in both cases; the only | 
 | 444 | difference is where in the filesystem (and therefore where in Python's | 
 | 445 | namespace hierarchy) the resulting extension lives. | 
 | 446 |  | 
 | 447 | If you have a number of extensions all in the same package (or all under | 
 | 448 | the same base package), use the \option{ext\_package} keyword argument | 
 | 449 | to \function{setup()}.  For example, | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 450 |  | 
| Greg Ward | 2afffd4 | 2000-08-06 20:37:24 +0000 | [diff] [blame] | 451 | \begin{verbatim} | 
 | 452 | setup(... | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 453 |       ext_package="pkg", | 
 | 454 |       ext_modules=[Extension("foo", ["foo.c"]), | 
 | 455 |                    Extension("subpkg.bar", ["bar.c"])] | 
| Greg Ward | 2afffd4 | 2000-08-06 20:37:24 +0000 | [diff] [blame] | 456 |      ) | 
 | 457 | \end{verbatim} | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 458 |  | 
| Greg Ward | 2afffd4 | 2000-08-06 20:37:24 +0000 | [diff] [blame] | 459 | will compile \file{foo.c} to the extension \module{pkg.foo}, and | 
 | 460 | \file{bar.c} to \module{pkg.subpkg.bar}. | 
 | 461 |  | 
 | 462 |  | 
 | 463 | \subsubsection{Extension source files} | 
 | 464 |  | 
 | 465 | The second argument to the \class{Extension} constructor is a list of | 
| Andrew M. Kuchling | 40df710 | 2002-05-08 13:39:03 +0000 | [diff] [blame] | 466 | source files.  Since the Distutils currently only support C, \Cpp, and | 
 | 467 | Objective-C extensions, these are normally C/\Cpp/Objective-C source | 
 | 468 | files.  (Be sure to use appropriate extensions to distinguish \Cpp\ | 
 | 469 | source files: \file{.cc} and \file{.cpp} seem to be recognized by both | 
 | 470 | \UNIX{} and Windows compilers.) | 
| Greg Ward | 2afffd4 | 2000-08-06 20:37:24 +0000 | [diff] [blame] | 471 |  | 
 | 472 | However, you can also include SWIG interface (\file{.i}) files in the | 
 | 473 | list; the \command{build\_ext} command knows how to deal with SWIG | 
 | 474 | extensions: it will run SWIG on the interface file and compile the | 
 | 475 | resulting C/C++ file into your extension. | 
 | 476 |  | 
 | 477 | \XXX{SWIG support is rough around the edges and largely untested; | 
 | 478 |   especially SWIG support of C++ extensions!  Explain in more detail | 
 | 479 |   here when the interface firms up.} | 
 | 480 |  | 
 | 481 | On some platforms, you can include non-source files that are processed | 
 | 482 | by the compiler and included in your extension.  Currently, this just | 
| Thomas Heller | 5f52f72 | 2001-02-19 17:48:03 +0000 | [diff] [blame] | 483 | means Windows message text (\file{.mc}) files and resource definition | 
 | 484 | (\file{.rc}) files for Visual C++. These will be compiled to binary resource | 
 | 485 | (\file{.res}) files and linked into the executable. | 
| Greg Ward | 2afffd4 | 2000-08-06 20:37:24 +0000 | [diff] [blame] | 486 |  | 
 | 487 |  | 
 | 488 | \subsubsection{Preprocessor options} | 
 | 489 |  | 
 | 490 | Three optional arguments to \class{Extension} will help if you need to | 
 | 491 | specify include directories to search or preprocessor macros to | 
 | 492 | define/undefine: \code{include\_dirs}, \code{define\_macros}, and | 
 | 493 | \code{undef\_macros}. | 
 | 494 |  | 
 | 495 | For example, if your extension requires header files in the | 
 | 496 | \file{include} directory under your distribution root, use the | 
 | 497 | \code{include\_dirs} option: | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 498 |  | 
| Greg Ward | 2afffd4 | 2000-08-06 20:37:24 +0000 | [diff] [blame] | 499 | \begin{verbatim} | 
 | 500 | Extension("foo", ["foo.c"], include_dirs=["include"]) | 
 | 501 | \end{verbatim} | 
 | 502 |  | 
 | 503 | You can specify absolute directories there; if you know that your | 
| Fred Drake | eff9a87 | 2000-10-26 16:41:03 +0000 | [diff] [blame] | 504 | extension will only be built on \UNIX{} systems with X11R6 installed to | 
| Greg Ward | 2afffd4 | 2000-08-06 20:37:24 +0000 | [diff] [blame] | 505 | \file{/usr}, you can get away with | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 506 |  | 
| Greg Ward | 2afffd4 | 2000-08-06 20:37:24 +0000 | [diff] [blame] | 507 | \begin{verbatim} | 
 | 508 | Extension("foo", ["foo.c"], include_dirs=["/usr/include/X11"]) | 
 | 509 | \end{verbatim} | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 510 |  | 
| Greg Ward | 2afffd4 | 2000-08-06 20:37:24 +0000 | [diff] [blame] | 511 | You should avoid this sort of non-portable usage if you plan to | 
| Greg Ward | 58437f2 | 2002-05-10 14:40:22 +0000 | [diff] [blame] | 512 | distribute your code: it's probably better to write C code like | 
 | 513 | \begin{verbatim} | 
 | 514 | #include <X11/Xlib.h> | 
 | 515 | \end{verbatim} | 
| Greg Ward | 2afffd4 | 2000-08-06 20:37:24 +0000 | [diff] [blame] | 516 |  | 
 | 517 | If you need to include header files from some other Python extension, | 
| Greg Ward | 58437f2 | 2002-05-10 14:40:22 +0000 | [diff] [blame] | 518 | you can take advantage of the fact that header files are installed in a | 
 | 519 | consistent way by the Distutils \command{install\_header} command.  For | 
 | 520 | example, the Numerical Python header files are installed (on a standard | 
 | 521 | Unix installation) to \file{/usr/local/include/python1.5/Numerical}. | 
 | 522 | (The exact location will differ according to your platform and Python | 
| Andrew M. Kuchling | 40df710 | 2002-05-08 13:39:03 +0000 | [diff] [blame] | 523 | installation.)  Since the Python include | 
| Greg Ward | 58437f2 | 2002-05-10 14:40:22 +0000 | [diff] [blame] | 524 | directory---\file{/usr/local/include/python1.5} in this case---is always | 
 | 525 | included in the search path when building Python extensions, the best | 
 | 526 | approach is to write C code like | 
 | 527 | \begin{verbatim} | 
 | 528 | #include <Numerical/arrayobject.h> | 
 | 529 | \end{verbatim} | 
 | 530 | If you must put the \file{Numerical} include directory right into your | 
 | 531 | header search path, though, you can find that directory using the | 
 | 532 | Distutils \module{sysconfig} module: | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 533 |  | 
| Greg Ward | 2afffd4 | 2000-08-06 20:37:24 +0000 | [diff] [blame] | 534 | \begin{verbatim} | 
 | 535 | from distutils.sysconfig import get_python_inc | 
 | 536 | incdir = os.path.join(get_python_inc(plat_specific=1), "Numerical") | 
 | 537 | setup(..., | 
 | 538 |       Extension(..., include_dirs=[incdir])) | 
 | 539 | \end{verbatim} | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 540 |  | 
| Greg Ward | 2afffd4 | 2000-08-06 20:37:24 +0000 | [diff] [blame] | 541 | Even though this is quite portable---it will work on any Python | 
 | 542 | installation, regardless of platform---it's probably easier to just | 
 | 543 | write your C code in the sensible way. | 
 | 544 |  | 
 | 545 | You can define and undefine pre-processor macros with the | 
 | 546 | \code{define\_macros} and \code{undef\_macros} options. | 
 | 547 | \code{define\_macros} takes a list of \code{(name, value)} tuples, where | 
 | 548 | \code{name} is the name of the macro to define (a string) and | 
 | 549 | \code{value} is its value: either a string or \code{None}.  (Defining a | 
 | 550 | macro \code{FOO} to \code{None} is the equivalent of a bare | 
 | 551 | \code{\#define FOO} in your C source: with most compilers, this sets | 
 | 552 | \code{FOO} to the string \code{1}.)  \code{undef\_macros} is just | 
 | 553 | a list of macros to undefine. | 
 | 554 |  | 
 | 555 | For example: | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 556 |  | 
| Greg Ward | 2afffd4 | 2000-08-06 20:37:24 +0000 | [diff] [blame] | 557 | \begin{verbatim} | 
 | 558 | Extension(..., | 
 | 559 |           define_macros=[('NDEBUG', '1')], | 
 | 560 |                          ('HAVE_STRFTIME', None), | 
 | 561 |           undef_macros=['HAVE_FOO', 'HAVE_BAR']) | 
 | 562 | \end{verbatim} | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 563 |  | 
| Greg Ward | 2afffd4 | 2000-08-06 20:37:24 +0000 | [diff] [blame] | 564 | is the equivalent of having this at the top of every C source file: | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 565 |  | 
| Greg Ward | 2afffd4 | 2000-08-06 20:37:24 +0000 | [diff] [blame] | 566 | \begin{verbatim} | 
 | 567 | #define NDEBUG 1 | 
 | 568 | #define HAVE_STRFTIME | 
 | 569 | #undef HAVE_FOO | 
 | 570 | #undef HAVE_BAR | 
 | 571 | \end{verbatim} | 
 | 572 |  | 
 | 573 |  | 
 | 574 | \subsubsection{Library options} | 
 | 575 |  | 
 | 576 | You can also specify the libraries to link against when building your | 
 | 577 | extension, and the directories to search for those libraries.  The | 
 | 578 | \code{libraries} option is a list of libraries to link against, | 
 | 579 | \code{library\_dirs} is a list of directories to search for libraries at  | 
 | 580 | link-time, and \code{runtime\_library\_dirs} is a list of directories to  | 
 | 581 | search for shared (dynamically loaded) libraries at run-time. | 
 | 582 |  | 
 | 583 | For example, if you need to link against libraries known to be in the | 
 | 584 | standard library search path on target systems | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 585 |  | 
| Greg Ward | 2afffd4 | 2000-08-06 20:37:24 +0000 | [diff] [blame] | 586 | \begin{verbatim} | 
 | 587 | Extension(..., | 
 | 588 |           libraries=["gdbm", "readline"]) | 
 | 589 | \end{verbatim} | 
 | 590 |  | 
 | 591 | If you need to link with libraries in a non-standard location, you'll | 
 | 592 | have to include the location in \code{library\_dirs}: | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 593 |  | 
| Greg Ward | 2afffd4 | 2000-08-06 20:37:24 +0000 | [diff] [blame] | 594 | \begin{verbatim} | 
 | 595 | Extension(..., | 
 | 596 |           library_dirs=["/usr/X11R6/lib"], | 
 | 597 |           libraries=["X11", "Xt"]) | 
 | 598 | \end{verbatim} | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 599 |  | 
| Greg Ward | 2afffd4 | 2000-08-06 20:37:24 +0000 | [diff] [blame] | 600 | (Again, this sort of non-portable construct should be avoided if you | 
 | 601 | intend to distribute your code.) | 
 | 602 |  | 
| Thomas Heller | 5f52f72 | 2001-02-19 17:48:03 +0000 | [diff] [blame] | 603 | \XXX{Should mention clib libraries here or somewhere else!} | 
 | 604 |  | 
 | 605 | \subsubsection{Other options} | 
 | 606 |  | 
 | 607 | There are still some other options which can be used to handle special | 
 | 608 | cases. | 
 | 609 |  | 
 | 610 | The \option{extra\_objects} option is a list of object files to be passed | 
 | 611 | to the linker. These files must not have extensions, as the default | 
 | 612 | extension for the compiler is used. | 
 | 613 |  | 
 | 614 | \option{extra\_compile\_args} and \option{extra\_link\_args} can be used | 
| Andrew M. Kuchling | 40df710 | 2002-05-08 13:39:03 +0000 | [diff] [blame] | 615 | to specify additional command line options for the respective compiler and | 
 | 616 | linker command lines. | 
| Thomas Heller | 5f52f72 | 2001-02-19 17:48:03 +0000 | [diff] [blame] | 617 |  | 
| Andrew M. Kuchling | 40df710 | 2002-05-08 13:39:03 +0000 | [diff] [blame] | 618 | \option{export\_symbols} is only useful on Windows.  It can contain a list | 
| Thomas Heller | 5f52f72 | 2001-02-19 17:48:03 +0000 | [diff] [blame] | 619 | of symbols (functions or variables) to be exported. This option | 
| Andrew M. Kuchling | 40df710 | 2002-05-08 13:39:03 +0000 | [diff] [blame] | 620 | is not needed when building compiled extensions: Distutils  | 
 | 621 | will automatically add \code{initmodule} | 
 | 622 | to the list of exported symbols. | 
| Thomas Heller | 5f52f72 | 2001-02-19 17:48:03 +0000 | [diff] [blame] | 623 |  | 
| Andrew M. Kuchling | d7abe2a | 2002-05-29 17:33:48 +0000 | [diff] [blame] | 624 | \subsection{Installing Scripts} | 
| Thomas Heller | 5f52f72 | 2001-02-19 17:48:03 +0000 | [diff] [blame] | 625 | So far we have been dealing with pure and non-pure Python modules, | 
 | 626 | which are usually not run by themselves but imported by scripts. | 
 | 627 |  | 
| Andrew M. Kuchling | d7abe2a | 2002-05-29 17:33:48 +0000 | [diff] [blame] | 628 | Scripts are files containing Python source code, intended to be | 
| Andrew M. Kuchling | 40df710 | 2002-05-08 13:39:03 +0000 | [diff] [blame] | 629 | started from the command line.  Scripts don't require Distutils to do | 
 | 630 | anything very complicated.  The only clever feature is that if the | 
 | 631 | first line of the script starts with \code{\#!} and contains the word | 
 | 632 | ``python'', the Distutils will adjust the first line to refer to the | 
 | 633 | current interpreter location. | 
| Thomas Heller | 5f52f72 | 2001-02-19 17:48:03 +0000 | [diff] [blame] | 634 |  | 
 | 635 | The \option{scripts} option simply is a list of files to be handled | 
| Andrew M. Kuchling | d7abe2a | 2002-05-29 17:33:48 +0000 | [diff] [blame] | 636 | in this way.  From the PyXML setup script: | 
 | 637 |  | 
 | 638 | \begin{verbatim} | 
 | 639 | setup (...  | 
 | 640 |        scripts = ['scripts/xmlproc_parse', 'scripts/xmlproc_val'] | 
 | 641 |       ) | 
 | 642 | \end{verbatim} | 
| Thomas Heller | 5f52f72 | 2001-02-19 17:48:03 +0000 | [diff] [blame] | 643 |  | 
 | 644 |  | 
| Andrew M. Kuchling | d7abe2a | 2002-05-29 17:33:48 +0000 | [diff] [blame] | 645 | \subsection{Installing Additional Files} | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 646 |  | 
| Thomas Heller | 5f52f72 | 2001-02-19 17:48:03 +0000 | [diff] [blame] | 647 | The \option{data\_files} option can be used to specify additional | 
| Andrew M. Kuchling | d7abe2a | 2002-05-29 17:33:48 +0000 | [diff] [blame] | 648 | files needed by the module distribution: configuration files, message | 
 | 649 | catalogs, data files, anything which doesn't fit in the previous | 
 | 650 | categories. | 
| Thomas Heller | 5f52f72 | 2001-02-19 17:48:03 +0000 | [diff] [blame] | 651 |  | 
| Fred Drake | 632bda3 | 2002-03-08 22:02:06 +0000 | [diff] [blame] | 652 | \option{data\_files} specifies a sequence of (\var{directory}, | 
 | 653 | \var{files}) pairs in the following way: | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 654 |  | 
| Thomas Heller | 5f52f72 | 2001-02-19 17:48:03 +0000 | [diff] [blame] | 655 | \begin{verbatim} | 
 | 656 | setup(... | 
 | 657 |       data_files=[('bitmaps', ['bm/b1.gif', 'bm/b2.gif']), | 
| Andrew M. Kuchling | d7abe2a | 2002-05-29 17:33:48 +0000 | [diff] [blame] | 658 |                   ('config', ['cfg/data.cfg']), | 
 | 659 |                   ('/etc/init.d', ['init-script'])] | 
 | 660 |      ) | 
| Thomas Heller | 5f52f72 | 2001-02-19 17:48:03 +0000 | [diff] [blame] | 661 | \end{verbatim} | 
 | 662 |  | 
 | 663 | Note that you can specify the directory names where the data files | 
 | 664 | will be installed, but you cannot rename the data files themselves. | 
 | 665 |  | 
| Fred Drake | 632bda3 | 2002-03-08 22:02:06 +0000 | [diff] [blame] | 666 | Each (\var{directory}, \var{files}) pair in the sequence specifies the | 
 | 667 | installation directory and the files to install there.  If | 
 | 668 | \var{directory} is a relative path, it is interpreted relative to the | 
 | 669 | installation prefix (Python's \code{sys.prefix} for pure-Python | 
 | 670 | packages, \code{sys.exec_prefix} for packages that contain extension | 
 | 671 | modules).  Each file name in \var{files} is interpreted relative to | 
 | 672 | the \file{setup.py} script at the top of the package source | 
 | 673 | distribution.  No directory information from \var{files} is used to | 
 | 674 | determine the final location of the installed file; only the name of | 
 | 675 | the file is used. | 
 | 676 |  | 
| Thomas Heller | 5f52f72 | 2001-02-19 17:48:03 +0000 | [diff] [blame] | 677 | You can specify the \option{data\_files} options as a simple sequence | 
 | 678 | of files without specifying a target directory, but this is not recommended, | 
 | 679 | and the \command{install} command will print a warning in this case. | 
 | 680 | To install data files directly in the target directory, an empty | 
 | 681 | string should be given as the directory. | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 682 |  | 
 | 683 |  | 
 | 684 | \section{Writing the Setup Configuration File} | 
| Greg Ward | e78298a | 2000-04-28 17:12:24 +0000 | [diff] [blame] | 685 | \label{setup-config} | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 686 |  | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 687 | Often, it's not possible to write down everything needed to build a | 
| Greg Ward | 47f99a6 | 2000-09-04 20:07:15 +0000 | [diff] [blame] | 688 | distribution \emph{a priori}: you may need to get some information from | 
 | 689 | the user, or from the user's system, in order to proceed.  As long as | 
 | 690 | that information is fairly simple---a list of directories to search for | 
 | 691 | C header files or libraries, for example---then providing a | 
 | 692 | configuration file, \file{setup.cfg}, for users to edit is a cheap and | 
 | 693 | easy way to solicit it.  Configuration files also let you provide | 
 | 694 | default values for any command option, which the installer can then | 
 | 695 | override either on the command-line or by editing the config file. | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 696 |  | 
| Andrew M. Kuchling | 40df710 | 2002-05-08 13:39:03 +0000 | [diff] [blame] | 697 | % (If you have more advanced needs, such as determining which extensions | 
 | 698 | % to build based on what capabilities are present on the target system, | 
 | 699 | % then you need the Distutils ``auto-configuration'' facility.  This | 
 | 700 | % started to appear in Distutils 0.9 but, as of this writing, isn't mature  | 
 | 701 | % or stable enough yet for real-world use.) | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 702 |  | 
| Greg Ward | 47f99a6 | 2000-09-04 20:07:15 +0000 | [diff] [blame] | 703 | The setup configuration file is a useful middle-ground between the setup | 
 | 704 | script---which, ideally, would be opaque to installers\footnote{This | 
 | 705 |   ideal probably won't be achieved until auto-configuration is fully | 
 | 706 |   supported by the Distutils.}---and the command-line to the setup | 
 | 707 | script, which is outside of your control and entirely up to the | 
 | 708 | installer.  In fact, \file{setup.cfg} (and any other Distutils | 
 | 709 | configuration files present on the target system) are processed after | 
 | 710 | the contents of the setup script, but before the command-line.  This has  | 
 | 711 | several useful consequences: | 
 | 712 | \begin{itemize} | 
 | 713 | \item installers can override some of what you put in \file{setup.py} by | 
 | 714 |   editing \file{setup.cfg} | 
 | 715 | \item you can provide non-standard defaults for options that are not | 
 | 716 |   easily set in \file{setup.py} | 
 | 717 | \item installers can override anything in \file{setup.cfg} using the | 
 | 718 |   command-line options to \file{setup.py} | 
 | 719 | \end{itemize} | 
 | 720 |  | 
 | 721 | The basic syntax of the configuration file is simple: | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 722 |  | 
| Greg Ward | 47f99a6 | 2000-09-04 20:07:15 +0000 | [diff] [blame] | 723 | \begin{verbatim} | 
 | 724 | [command] | 
 | 725 | option=value | 
 | 726 | ... | 
 | 727 | \end{verbatim} | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 728 |  | 
| Greg Ward | 47f99a6 | 2000-09-04 20:07:15 +0000 | [diff] [blame] | 729 | where \var{command} is one of the Distutils commands (e.g. | 
| Andrew M. Kuchling | 40df710 | 2002-05-08 13:39:03 +0000 | [diff] [blame] | 730 | \command{build\_py}, \command{install}), and \var{option} is one of | 
 | 731 | the options that command supports.  Any number of options can be | 
 | 732 | supplied for each command, and any number of command sections can be | 
 | 733 | included in the file.  Blank lines are ignored, as are comments, which | 
 | 734 | run from a \character{\#} character until the end of the line.  Long | 
 | 735 | option values can be split across multiple lines simply by indenting | 
 | 736 | the continuation lines. | 
| Greg Ward | 47f99a6 | 2000-09-04 20:07:15 +0000 | [diff] [blame] | 737 |  | 
 | 738 | You can find out the list of options supported by a particular command | 
 | 739 | with the universal \longprogramopt{help} option, e.g. | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 740 |  | 
| Greg Ward | 47f99a6 | 2000-09-04 20:07:15 +0000 | [diff] [blame] | 741 | \begin{verbatim} | 
 | 742 | > python setup.py --help build_ext | 
 | 743 | [...] | 
 | 744 | Options for 'build_ext' command: | 
 | 745 |   --build-lib (-b)     directory for compiled extension modules | 
 | 746 |   --build-temp (-t)    directory for temporary files (build by-products) | 
 | 747 |   --inplace (-i)       ignore build-lib and put compiled extensions into the | 
 | 748 |                        source directory alongside your pure Python modules | 
 | 749 |   --include-dirs (-I)  list of directories to search for header files | 
 | 750 |   --define (-D)        C preprocessor macros to define | 
 | 751 |   --undef (-U)         C preprocessor macros to undefine | 
 | 752 | [...] | 
 | 753 | \end{verbatim} | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 754 |  | 
| Greg Ward | 47f99a6 | 2000-09-04 20:07:15 +0000 | [diff] [blame] | 755 | Note that an option spelled \longprogramopt{foo-bar} on the command-line  | 
 | 756 | is spelled \option{foo\_bar} in configuration files. | 
 | 757 |  | 
 | 758 | For example, say you want your extensions to be built | 
 | 759 | ``in-place''---that is, you have an extension \module{pkg.ext}, and you | 
| Fred Drake | eff9a87 | 2000-10-26 16:41:03 +0000 | [diff] [blame] | 760 | want the compiled extension file (\file{ext.so} on \UNIX, say) to be put | 
| Greg Ward | 47f99a6 | 2000-09-04 20:07:15 +0000 | [diff] [blame] | 761 | in the same source directory as your pure Python modules | 
 | 762 | \module{pkg.mod1} and \module{pkg.mod2}.  You can always use the | 
 | 763 | \longprogramopt{inplace} option on the command-line to ensure this: | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 764 |  | 
| Greg Ward | 47f99a6 | 2000-09-04 20:07:15 +0000 | [diff] [blame] | 765 | \begin{verbatim} | 
 | 766 | python setup.py build_ext --inplace | 
 | 767 | \end{verbatim} | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 768 |  | 
| Greg Ward | 47f99a6 | 2000-09-04 20:07:15 +0000 | [diff] [blame] | 769 | But this requires that you always specify the \command{build\_ext} | 
 | 770 | command explicitly, and remember to provide \longprogramopt{inplace}. | 
 | 771 | An easier way is to ``set and forget'' this option, by encoding it in | 
 | 772 | \file{setup.cfg}, the configuration file for this distribution: | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 773 |  | 
| Greg Ward | 47f99a6 | 2000-09-04 20:07:15 +0000 | [diff] [blame] | 774 | \begin{verbatim} | 
 | 775 | [build_ext] | 
 | 776 | inplace=1 | 
 | 777 | \end{verbatim} | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 778 |  | 
| Greg Ward | 47f99a6 | 2000-09-04 20:07:15 +0000 | [diff] [blame] | 779 | This will affect all builds of this module distribution, whether or not | 
 | 780 | you explcitly specify \command{build\_ext}.  If you include | 
 | 781 | \file{setup.cfg} in your source distribution, it will also affect | 
 | 782 | end-user builds---which is probably a bad idea for this option, since | 
 | 783 | always building extensions in-place would break installation of the | 
 | 784 | module distribution.  In certain peculiar cases, though, modules are | 
 | 785 | built right in their installation directory, so this is conceivably a | 
 | 786 | useful ability.  (Distributing extensions that expect to be built in | 
 | 787 | their installation directory is almost always a bad idea, though.) | 
 | 788 |  | 
 | 789 | Another example: certain commands take a lot of options that don't | 
| Andrew M. Kuchling | 40df710 | 2002-05-08 13:39:03 +0000 | [diff] [blame] | 790 | change from run to run; for example, \command{bdist\_rpm} needs to know | 
| Greg Ward | 47f99a6 | 2000-09-04 20:07:15 +0000 | [diff] [blame] | 791 | everything required to generate a ``spec'' file for creating an RPM | 
 | 792 | distribution.  Some of this information comes from the setup script, and | 
 | 793 | some is automatically generated by the Distutils (such as the list of | 
 | 794 | files installed).  But some of it has to be supplied as options to | 
 | 795 | \command{bdist\_rpm}, which would be very tedious to do on the | 
 | 796 | command-line for every run.  Hence, here is a snippet from the | 
 | 797 | Distutils' own \file{setup.cfg}: | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 798 |  | 
| Greg Ward | 47f99a6 | 2000-09-04 20:07:15 +0000 | [diff] [blame] | 799 | \begin{verbatim} | 
 | 800 | [bdist_rpm] | 
 | 801 | release = 1 | 
 | 802 | packager = Greg Ward <gward@python.net> | 
 | 803 | doc_files = CHANGES.txt | 
 | 804 |             README.txt | 
 | 805 |             USAGE.txt | 
 | 806 |             doc/ | 
 | 807 |             examples/ | 
 | 808 | \end{verbatim} | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 809 |  | 
| Greg Ward | 47f99a6 | 2000-09-04 20:07:15 +0000 | [diff] [blame] | 810 | Note that the \option{doc\_files} option is simply a | 
 | 811 | whitespace-separated string split across multiple lines for readability. | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 812 |  | 
 | 813 |  | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 814 | \begin{seealso} | 
 | 815 |   \seetitle[../inst/config-syntax.html]{Installing Python | 
 | 816 |             Modules}{More information on the configuration files is | 
 | 817 |             available in the manual for system administrators.} | 
 | 818 | \end{seealso} | 
 | 819 |  | 
 | 820 |  | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 821 | \section{Creating a Source Distribution} | 
| Greg Ward | e78298a | 2000-04-28 17:12:24 +0000 | [diff] [blame] | 822 | \label{source-dist} | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 823 |  | 
| Greg Ward | e78298a | 2000-04-28 17:12:24 +0000 | [diff] [blame] | 824 | As shown in section~\ref{simple-example}, you use the | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 825 | \command{sdist} command to create a source distribution.  In the | 
 | 826 | simplest case, | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 827 |  | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 828 | \begin{verbatim} | 
 | 829 | python setup.py sdist | 
 | 830 | \end{verbatim} | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 831 |  | 
| Greg Ward | 19c67f8 | 2000-06-24 01:33:16 +0000 | [diff] [blame] | 832 | (assuming you haven't specified any \command{sdist} options in the setup | 
 | 833 | script or config file), \command{sdist} creates the archive of the | 
| Andrew M. Kuchling | 40df710 | 2002-05-08 13:39:03 +0000 | [diff] [blame] | 834 | default format for the current platform.  The default format is a gzip'ed | 
| Fred Drake | eff9a87 | 2000-10-26 16:41:03 +0000 | [diff] [blame] | 835 | tar file (\file{.tar.gz}) on \UNIX, and ZIP file on Windows. | 
 | 836 | \XXX{no MacOS support here} | 
| Greg Ward | 54589d4 | 2000-09-06 01:37:35 +0000 | [diff] [blame] | 837 |  | 
| Greg Ward | d5767a5 | 2000-04-19 22:48:09 +0000 | [diff] [blame] | 838 | You can specify as many formats as you like using the | 
 | 839 | \longprogramopt{formats} option, for example: | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 840 |  | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 841 | \begin{verbatim} | 
 | 842 | python setup.py sdist --formats=gztar,zip | 
 | 843 | \end{verbatim} | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 844 |  | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 845 | to create a gzipped tarball and a zip file.  The available formats are: | 
| Greg Ward | 46b98e3 | 2000-04-14 01:53:36 +0000 | [diff] [blame] | 846 | \begin{tableiii}{l|l|c}{code}% | 
 | 847 |   {Format}{Description}{Notes} | 
| Greg Ward | 54589d4 | 2000-09-06 01:37:35 +0000 | [diff] [blame] | 848 |   \lineiii{zip}{zip file (\file{.zip})}{(1),(3)} | 
 | 849 |   \lineiii{gztar}{gzip'ed tar file (\file{.tar.gz})}{(2),(4)} | 
| Andrew M. Kuchling | 40df710 | 2002-05-08 13:39:03 +0000 | [diff] [blame] | 850 |   \lineiii{bztar}{bzip2'ed tar file (\file{.tar.bz2})}{(4)} | 
| Greg Ward | 47f99a6 | 2000-09-04 20:07:15 +0000 | [diff] [blame] | 851 |   \lineiii{ztar}{compressed tar file (\file{.tar.Z})}{(4)} | 
| Greg Ward | 54589d4 | 2000-09-06 01:37:35 +0000 | [diff] [blame] | 852 |   \lineiii{tar}{tar file (\file{.tar})}{(4)} | 
| Greg Ward | 46b98e3 | 2000-04-14 01:53:36 +0000 | [diff] [blame] | 853 | \end{tableiii} | 
 | 854 |  | 
 | 855 | \noindent Notes: | 
 | 856 | \begin{description} | 
 | 857 | \item[(1)] default on Windows | 
| Fred Drake | eff9a87 | 2000-10-26 16:41:03 +0000 | [diff] [blame] | 858 | \item[(2)] default on \UNIX | 
| Greg Ward | b652897 | 2000-09-07 02:40:37 +0000 | [diff] [blame] | 859 | \item[(3)] requires either external \program{zip} utility or | 
| Greg Ward | 954ce8b | 2002-05-10 14:42:10 +0000 | [diff] [blame] | 860 |   \module{zipfile} module (part of the standard Python library since | 
 | 861 |   Python~1.6) | 
| Greg Ward | 47f99a6 | 2000-09-04 20:07:15 +0000 | [diff] [blame] | 862 | \item[(4)] requires external utilities: \program{tar} and possibly one | 
 | 863 |   of \program{gzip}, \program{bzip2}, or \program{compress} | 
| Greg Ward | 46b98e3 | 2000-04-14 01:53:36 +0000 | [diff] [blame] | 864 | \end{description} | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 865 |  | 
 | 866 |  | 
| Greg Ward | 54589d4 | 2000-09-06 01:37:35 +0000 | [diff] [blame] | 867 |  | 
 | 868 | \subsection{Specifying the files to distribute} | 
| Greg Ward | e78298a | 2000-04-28 17:12:24 +0000 | [diff] [blame] | 869 | \label{manifest} | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 870 |  | 
| Greg Ward | 54589d4 | 2000-09-06 01:37:35 +0000 | [diff] [blame] | 871 | If you don't supply an explicit list of files (or instructions on how to | 
 | 872 | generate one), the \command{sdist} command puts a minimal default set | 
 | 873 | into the source distribution: | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 874 | \begin{itemize} | 
| Greg Ward | facb8db | 2000-04-09 04:32:40 +0000 | [diff] [blame] | 875 | \item all Python source files implied by the \option{py\_modules} and | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 876 |   \option{packages} options | 
| Greg Ward | facb8db | 2000-04-09 04:32:40 +0000 | [diff] [blame] | 877 | \item all C source files mentioned in the \option{ext\_modules} or | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 878 |   \option{libraries} options (\XXX{getting C library sources currently | 
| Greg Ward | facb8db | 2000-04-09 04:32:40 +0000 | [diff] [blame] | 879 |     broken -- no get\_source\_files() method in build\_clib.py!}) | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 880 | \item anything that looks like a test script: \file{test/test*.py} | 
 | 881 |   (currently, the Distutils don't do anything with test scripts except | 
 | 882 |   include them in source distributions, but in the future there will be | 
 | 883 |   a standard for testing Python module distributions) | 
| Greg Ward | 54589d4 | 2000-09-06 01:37:35 +0000 | [diff] [blame] | 884 | \item \file{README.txt} (or \file{README}), \file{setup.py} (or whatever  | 
 | 885 |   you called your setup script), and \file{setup.cfg} | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 886 | \end{itemize} | 
| Andrew M. Kuchling | 40df710 | 2002-05-08 13:39:03 +0000 | [diff] [blame] | 887 |  | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 888 | Sometimes this is enough, but usually you will want to specify | 
 | 889 | additional files to distribute.  The typical way to do this is to write | 
 | 890 | a \emph{manifest template}, called \file{MANIFEST.in} by default.  The | 
| Greg Ward | 54589d4 | 2000-09-06 01:37:35 +0000 | [diff] [blame] | 891 | manifest template is just a list of instructions for how to generate | 
 | 892 | your manifest file, \file{MANIFEST}, which is the exact list of files to | 
 | 893 | include in your source distribution.  The \command{sdist} command | 
 | 894 | processes this template and generates a manifest based on its | 
 | 895 | instructions and what it finds in the filesystem. | 
 | 896 |  | 
 | 897 | If you prefer to roll your own manifest file, the format is simple: one | 
 | 898 | filename per line, regular files (or symlinks to them) only.  If you do | 
 | 899 | supply your own \file{MANIFEST}, you must specify everything: the | 
 | 900 | default set of files described above does not apply in this case. | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 901 |  | 
 | 902 | The manifest template has one command per line, where each command | 
 | 903 | specifies a set of files to include or exclude from the source | 
 | 904 | distribution.  For an example, again we turn to the Distutils' own | 
 | 905 | manifest template: | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 906 |  | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 907 | \begin{verbatim} | 
 | 908 | include *.txt | 
| Greg Ward | 87da1ea | 2000-04-21 04:35:25 +0000 | [diff] [blame] | 909 | recursive-include examples *.txt *.py | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 910 | prune examples/sample?/build | 
 | 911 | \end{verbatim} | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 912 |  | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 913 | The meanings should be fairly clear: include all files in the | 
 | 914 | distribution root matching \code{*.txt}, all files anywhere under the | 
 | 915 | \file{examples} directory matching \code{*.txt} or \code{*.py}, and | 
| Greg Ward | 54589d4 | 2000-09-06 01:37:35 +0000 | [diff] [blame] | 916 | exclude all directories matching \code{examples/sample?/build}.  All of | 
 | 917 | this is done \emph{after} the standard include set, so you can exclude | 
 | 918 | files from the standard set with explicit instructions in the manifest | 
 | 919 | template.  (Or, you can use the \longprogramopt{no-defaults} option to | 
 | 920 | disable the standard set entirely.)  There are several other commands | 
 | 921 | available in the manifest template mini-language; see | 
 | 922 | section~\ref{sdist-cmd}. | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 923 |  | 
| Greg Ward | 54589d4 | 2000-09-06 01:37:35 +0000 | [diff] [blame] | 924 | The order of commands in the manifest template matters: initially, we | 
 | 925 | have the list of default files as described above, and each command in | 
 | 926 | the template adds to or removes from that list of files.  Once we have | 
 | 927 | fully processed the manifest template, we remove files that should not | 
 | 928 | be included in the source distribution: | 
 | 929 | \begin{itemize} | 
 | 930 | \item all files in the Distutils ``build'' tree (default \file{build/}) | 
 | 931 | \item all files in directories named \file{RCS} or \file{CVS} | 
 | 932 | \end{itemize} | 
 | 933 | Now we have our complete list of files, which is written to the manifest | 
 | 934 | for future reference, and then used to build the source distribution | 
 | 935 | archive(s). | 
 | 936 |  | 
 | 937 | You can disable the default set of included files with the | 
 | 938 | \longprogramopt{no-defaults} option, and you can disable the standard | 
 | 939 | exclude set with \longprogramopt{no-prune}. | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 940 |  | 
| Greg Ward | 46b98e3 | 2000-04-14 01:53:36 +0000 | [diff] [blame] | 941 | Following the Distutils' own manifest template, let's trace how the | 
| Greg Ward | 47f99a6 | 2000-09-04 20:07:15 +0000 | [diff] [blame] | 942 | \command{sdist} command builds the list of files to include in the | 
| Greg Ward | 46b98e3 | 2000-04-14 01:53:36 +0000 | [diff] [blame] | 943 | Distutils source distribution: | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 944 | \begin{enumerate} | 
 | 945 | \item include all Python source files in the \file{distutils} and | 
 | 946 |   \file{distutils/command} subdirectories (because packages | 
 | 947 |   corresponding to those two directories were mentioned in the | 
| Greg Ward | 54589d4 | 2000-09-06 01:37:35 +0000 | [diff] [blame] | 948 |   \option{packages} option in the setup script---see | 
 | 949 |   section~\ref{setup-script}) | 
 | 950 | \item include \file{README.txt}, \file{setup.py}, and \file{setup.cfg} | 
 | 951 |   (standard files) | 
 | 952 | \item include \file{test/test*.py} (standard files) | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 953 | \item include \file{*.txt} in the distribution root (this will find | 
 | 954 |   \file{README.txt} a second time, but such redundancies are weeded out | 
 | 955 |   later) | 
| Greg Ward | 54589d4 | 2000-09-06 01:37:35 +0000 | [diff] [blame] | 956 | \item include anything matching \file{*.txt} or \file{*.py} in the | 
 | 957 |   sub-tree under \file{examples}, | 
 | 958 | \item exclude all files in the sub-trees starting at directories | 
 | 959 |   matching \file{examples/sample?/build}---this may exclude files | 
 | 960 |   included by the previous two steps, so it's important that the | 
 | 961 |   \code{prune} command in the manifest template comes after the | 
 | 962 |   \code{recursive-include} command | 
 | 963 | \item exclude the entire \file{build} tree, and any \file{RCS} or | 
 | 964 |   \file{CVS} directories | 
| Greg Ward | facb8db | 2000-04-09 04:32:40 +0000 | [diff] [blame] | 965 | \end{enumerate} | 
| Greg Ward | 46b98e3 | 2000-04-14 01:53:36 +0000 | [diff] [blame] | 966 | Just like in the setup script, file and directory names in the manifest | 
 | 967 | template should always be slash-separated; the Distutils will take care | 
 | 968 | of converting them to the standard representation on your platform. | 
 | 969 | That way, the manifest template is portable across operating systems. | 
 | 970 |  | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 971 |  | 
 | 972 | \subsection{Manifest-related options} | 
| Greg Ward | e78298a | 2000-04-28 17:12:24 +0000 | [diff] [blame] | 973 | \label{manifest-options} | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 974 |  | 
 | 975 | The normal course of operations for the \command{sdist} command is as | 
 | 976 | follows: | 
 | 977 | \begin{itemize} | 
| Greg Ward | 46b98e3 | 2000-04-14 01:53:36 +0000 | [diff] [blame] | 978 | \item if the manifest file, \file{MANIFEST} doesn't exist, read | 
 | 979 |   \file{MANIFEST.in} and create the manifest | 
| Greg Ward | 54589d4 | 2000-09-06 01:37:35 +0000 | [diff] [blame] | 980 | \item if neither \file{MANIFEST} nor \file{MANIFEST.in} exist, create a | 
| Andrew M. Kuchling | 40df710 | 2002-05-08 13:39:03 +0000 | [diff] [blame] | 981 |   manifest with just the default file set | 
| Greg Ward | 1d8f57a | 2000-08-05 00:43:11 +0000 | [diff] [blame] | 982 | \item if either \file{MANIFEST.in} or the setup script (\file{setup.py}) | 
 | 983 |   are more recent than \file{MANIFEST}, recreate \file{MANIFEST} by | 
 | 984 |   reading \file{MANIFEST.in} | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 985 | \item use the list of files now in \file{MANIFEST} (either just | 
 | 986 |   generated or read in) to create the source distribution archive(s) | 
 | 987 | \end{itemize} | 
| Greg Ward | 54589d4 | 2000-09-06 01:37:35 +0000 | [diff] [blame] | 988 | There are a couple of options that modify this behaviour.  First, use | 
 | 989 | the \longprogramopt{no-defaults} and \longprogramopt{no-prune} to | 
| Andrew M. Kuchling | 40df710 | 2002-05-08 13:39:03 +0000 | [diff] [blame] | 990 | disable the standard ``include'' and ``exclude'' sets. | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 991 |  | 
| Greg Ward | 54589d4 | 2000-09-06 01:37:35 +0000 | [diff] [blame] | 992 | Second, you might want to force the manifest to be regenerated---for | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 993 | example, if you have added or removed files or directories that match an | 
 | 994 | existing pattern in the manifest template, you should regenerate the | 
 | 995 | manifest: | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 996 |  | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 997 | \begin{verbatim} | 
 | 998 | python setup.py sdist --force-manifest | 
 | 999 | \end{verbatim} | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 1000 |  | 
 | 1001 | Or, you might just want to (re)generate the manifest, but not create a | 
 | 1002 | source distribution: | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 1003 |  | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 1004 | \begin{verbatim} | 
 | 1005 | python setup.py sdist --manifest-only | 
 | 1006 | \end{verbatim} | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 1007 |  | 
| Greg Ward | 54589d4 | 2000-09-06 01:37:35 +0000 | [diff] [blame] | 1008 | \longprogramopt{manifest-only} implies \longprogramopt{force-manifest}. | 
 | 1009 | \programopt{-o} is a shortcut for \longprogramopt{manifest-only}, and | 
 | 1010 | \programopt{-f} for \longprogramopt{force-manifest}. | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 1011 |  | 
 | 1012 |  | 
 | 1013 | \section{Creating Built Distributions} | 
| Greg Ward | e78298a | 2000-04-28 17:12:24 +0000 | [diff] [blame] | 1014 | \label{built-dist} | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 1015 |  | 
| Greg Ward | 46b98e3 | 2000-04-14 01:53:36 +0000 | [diff] [blame] | 1016 | A ``built distribution'' is what you're probably used to thinking of | 
 | 1017 | either as a ``binary package'' or an ``installer'' (depending on your | 
 | 1018 | background).  It's not necessarily binary, though, because it might | 
 | 1019 | contain only Python source code and/or byte-code; and we don't call it a | 
 | 1020 | package, because that word is already spoken for in Python.  (And | 
 | 1021 | ``installer'' is a term specific to the Windows world.  \XXX{do Mac | 
 | 1022 |   people use it?}) | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 1023 |  | 
| Greg Ward | 46b98e3 | 2000-04-14 01:53:36 +0000 | [diff] [blame] | 1024 | A built distribution is how you make life as easy as possible for | 
 | 1025 | installers of your module distribution: for users of RPM-based Linux | 
 | 1026 | systems, it's a binary RPM; for Windows users, it's an executable | 
 | 1027 | installer; for Debian-based Linux users, it's a Debian package; and so | 
 | 1028 | forth.  Obviously, no one person will be able to create built | 
| Greg Ward | b652897 | 2000-09-07 02:40:37 +0000 | [diff] [blame] | 1029 | distributions for every platform under the sun, so the Distutils are | 
| Greg Ward | 46b98e3 | 2000-04-14 01:53:36 +0000 | [diff] [blame] | 1030 | designed to enable module developers to concentrate on their | 
 | 1031 | specialty---writing code and creating source distributions---while an | 
| Andrew M. Kuchling | 40df710 | 2002-05-08 13:39:03 +0000 | [diff] [blame] | 1032 | intermediary species called \emph{packagers} springs up to turn source | 
| Greg Ward | 19c67f8 | 2000-06-24 01:33:16 +0000 | [diff] [blame] | 1033 | distributions into built distributions for as many platforms as there | 
| Greg Ward | 46b98e3 | 2000-04-14 01:53:36 +0000 | [diff] [blame] | 1034 | are packagers. | 
 | 1035 |  | 
 | 1036 | Of course, the module developer could be his own packager; or the | 
 | 1037 | packager could be a volunteer ``out there'' somewhere who has access to | 
 | 1038 | a platform which the original developer does not; or it could be | 
 | 1039 | software periodically grabbing new source distributions and turning them | 
 | 1040 | into built distributions for as many platforms as the software has | 
| Andrew M. Kuchling | 40df710 | 2002-05-08 13:39:03 +0000 | [diff] [blame] | 1041 | access to.  Regardless of who they are, a packager uses the | 
| Greg Ward | 46b98e3 | 2000-04-14 01:53:36 +0000 | [diff] [blame] | 1042 | setup script and the \command{bdist} command family to generate built | 
 | 1043 | distributions. | 
 | 1044 |  | 
 | 1045 | As a simple example, if I run the following command in the Distutils | 
 | 1046 | source tree: | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 1047 |  | 
| Greg Ward | 46b98e3 | 2000-04-14 01:53:36 +0000 | [diff] [blame] | 1048 | \begin{verbatim} | 
 | 1049 | python setup.py bdist | 
 | 1050 | \end{verbatim} | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 1051 |  | 
| Greg Ward | 46b98e3 | 2000-04-14 01:53:36 +0000 | [diff] [blame] | 1052 | then the Distutils builds my module distribution (the Distutils itself | 
 | 1053 | in this case), does a ``fake'' installation (also in the \file{build} | 
 | 1054 | directory), and creates the default type of built distribution for my | 
| Greg Ward | b652897 | 2000-09-07 02:40:37 +0000 | [diff] [blame] | 1055 | platform.  The default format for built distributions is a ``dumb'' tar | 
| Andrew M. Kuchling | 40df710 | 2002-05-08 13:39:03 +0000 | [diff] [blame] | 1056 | file on \UNIX, and a simple executable installer on Windows.  (That tar | 
| Greg Ward | b652897 | 2000-09-07 02:40:37 +0000 | [diff] [blame] | 1057 | file is considered ``dumb'' because it has to be unpacked in a specific | 
 | 1058 | location to work.) | 
| Greg Ward | 1d8f57a | 2000-08-05 00:43:11 +0000 | [diff] [blame] | 1059 |  | 
| Fred Drake | eff9a87 | 2000-10-26 16:41:03 +0000 | [diff] [blame] | 1060 | Thus, the above command on a \UNIX{} system creates | 
| Andrew M. Kuchling | 40df710 | 2002-05-08 13:39:03 +0000 | [diff] [blame] | 1061 | \file{Distutils-1.0.\filevar{plat}.tar.gz}; unpacking this tarball | 
| Greg Ward | b652897 | 2000-09-07 02:40:37 +0000 | [diff] [blame] | 1062 | from the right place installs the Distutils just as though you had | 
 | 1063 | downloaded the source distribution and run \code{python setup.py | 
 | 1064 |   install}.  (The ``right place'' is either the root of the filesystem or  | 
 | 1065 | Python's \filevar{prefix} directory, depending on the options given to | 
 | 1066 | the \command{bdist\_dumb} command; the default is to make dumb | 
 | 1067 | distributions relative to \filevar{prefix}.)   | 
| Greg Ward | 46b98e3 | 2000-04-14 01:53:36 +0000 | [diff] [blame] | 1068 |  | 
| Andrew M. Kuchling | 40df710 | 2002-05-08 13:39:03 +0000 | [diff] [blame] | 1069 | Obviously, for pure Python distributions, this isn't any simpler than | 
 | 1070 | just running \code{python setup.py install}---but for non-pure | 
 | 1071 | distributions, which include extensions that would need to be | 
 | 1072 | compiled, it can mean the difference between someone being able to use | 
 | 1073 | your extensions or not.  And creating ``smart'' built distributions, | 
 | 1074 | such as an RPM package or an executable installer for Windows, is far | 
 | 1075 | more convenient for users even if your distribution doesn't include | 
 | 1076 | any extensions. | 
| Greg Ward | 46b98e3 | 2000-04-14 01:53:36 +0000 | [diff] [blame] | 1077 |  | 
| Greg Ward | b652897 | 2000-09-07 02:40:37 +0000 | [diff] [blame] | 1078 | The \command{bdist} command has a \longprogramopt{formats} option, | 
| Greg Ward | 1d8f57a | 2000-08-05 00:43:11 +0000 | [diff] [blame] | 1079 | similar to the \command{sdist} command, which you can use to select the | 
 | 1080 | types of built distribution to generate: for example, | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 1081 |  | 
| Greg Ward | 46b98e3 | 2000-04-14 01:53:36 +0000 | [diff] [blame] | 1082 | \begin{verbatim} | 
 | 1083 | python setup.py bdist --format=zip | 
 | 1084 | \end{verbatim} | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 1085 |  | 
| Fred Drake | eff9a87 | 2000-10-26 16:41:03 +0000 | [diff] [blame] | 1086 | would, when run on a \UNIX{} system, create | 
| Andrew M. Kuchling | 40df710 | 2002-05-08 13:39:03 +0000 | [diff] [blame] | 1087 | \file{Distutils-1.0.\filevar{plat}.zip}---again, this archive would be | 
| Greg Ward | 1d8f57a | 2000-08-05 00:43:11 +0000 | [diff] [blame] | 1088 | unpacked from the root directory to install the Distutils. | 
| Greg Ward | 46b98e3 | 2000-04-14 01:53:36 +0000 | [diff] [blame] | 1089 |  | 
 | 1090 | The available formats for built distributions are: | 
 | 1091 | \begin{tableiii}{l|l|c}{code}% | 
 | 1092 |   {Format}{Description}{Notes} | 
| Greg Ward | b652897 | 2000-09-07 02:40:37 +0000 | [diff] [blame] | 1093 |   \lineiii{gztar}{gzipped tar file (\file{.tar.gz})}{(1),(3)} | 
 | 1094 |   \lineiii{ztar}{compressed tar file (\file{.tar.Z})}{(3)} | 
 | 1095 |   \lineiii{tar}{tar file (\file{.tar})}{(3)} | 
 | 1096 |   \lineiii{zip}{zip file (\file{.zip})}{(4)} | 
 | 1097 |   \lineiii{rpm}{RPM}{(5)} | 
| Andrew M. Kuchling | 40df710 | 2002-05-08 13:39:03 +0000 | [diff] [blame] | 1098 |   \lineiii{pkgtool}{Solaris \program{pkgtool}}{} | 
 | 1099 |   \lineiii{sdux}{HP-UX \program{swinstall}}{} | 
 | 1100 |   \lineiii{rpm}{RPM}{(5)} | 
 | 1101 | %  \lineiii{srpm}{source RPM}{(5) \XXX{to do!}} | 
| Thomas Heller | 5f52f72 | 2001-02-19 17:48:03 +0000 | [diff] [blame] | 1102 |   \lineiii{wininst}{self-extracting ZIP file for Windows}{(2),(4)} | 
| Greg Ward | 46b98e3 | 2000-04-14 01:53:36 +0000 | [diff] [blame] | 1103 | \end{tableiii} | 
 | 1104 |  | 
 | 1105 | \noindent Notes: | 
 | 1106 | \begin{description} | 
| Fred Drake | eff9a87 | 2000-10-26 16:41:03 +0000 | [diff] [blame] | 1107 | \item[(1)] default on \UNIX | 
| Greg Ward | 1d8f57a | 2000-08-05 00:43:11 +0000 | [diff] [blame] | 1108 | \item[(2)] default on Windows \XXX{to-do!} | 
| Greg Ward | b652897 | 2000-09-07 02:40:37 +0000 | [diff] [blame] | 1109 | \item[(3)] requires external utilities: \program{tar} and possibly one | 
 | 1110 |   of \program{gzip}, \program{bzip2}, or \program{compress} | 
 | 1111 | \item[(4)] requires either external \program{zip} utility or | 
| Greg Ward | 954ce8b | 2002-05-10 14:42:10 +0000 | [diff] [blame] | 1112 |   \module{zipfile} module (part of the standard Python library since | 
 | 1113 |   Python~1.6) | 
| Greg Ward | b652897 | 2000-09-07 02:40:37 +0000 | [diff] [blame] | 1114 | \item[(5)] requires external \program{rpm} utility, version 3.0.4 or | 
 | 1115 |   better (use \code{rpm --version} to find out which version you have) | 
| Greg Ward | 46b98e3 | 2000-04-14 01:53:36 +0000 | [diff] [blame] | 1116 | \end{description} | 
 | 1117 |  | 
 | 1118 | You don't have to use the \command{bdist} command with the | 
| Greg Ward | d5767a5 | 2000-04-19 22:48:09 +0000 | [diff] [blame] | 1119 | \longprogramopt{formats} option; you can also use the command that | 
| Greg Ward | 1d8f57a | 2000-08-05 00:43:11 +0000 | [diff] [blame] | 1120 | directly implements the format you're interested in.  Some of these | 
| Greg Ward | 46b98e3 | 2000-04-14 01:53:36 +0000 | [diff] [blame] | 1121 | \command{bdist} ``sub-commands'' actually generate several similar | 
 | 1122 | formats; for instance, the \command{bdist\_dumb} command generates all | 
 | 1123 | the ``dumb'' archive formats (\code{tar}, \code{ztar}, \code{gztar}, and | 
 | 1124 | \code{zip}), and \command{bdist\_rpm} generates both binary and source | 
 | 1125 | RPMs.  The \command{bdist} sub-commands, and the formats generated by | 
 | 1126 | each, are: | 
 | 1127 | \begin{tableii}{l|l}{command}% | 
 | 1128 |   {Command}{Formats} | 
 | 1129 |   \lineii{bdist\_dumb}{tar, ztar, gztar, zip} | 
 | 1130 |   \lineii{bdist\_rpm}{rpm, srpm} | 
| Greg Ward | 1d8f57a | 2000-08-05 00:43:11 +0000 | [diff] [blame] | 1131 |   \lineii{bdist\_wininst}{wininst} | 
| Greg Ward | 46b98e3 | 2000-04-14 01:53:36 +0000 | [diff] [blame] | 1132 | \end{tableii} | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 1133 |  | 
| Greg Ward | b652897 | 2000-09-07 02:40:37 +0000 | [diff] [blame] | 1134 | The following sections give details on the individual \command{bdist\_*} | 
 | 1135 | commands. | 
 | 1136 |  | 
 | 1137 |  | 
 | 1138 | \subsection{Creating dumb built distributions} | 
 | 1139 | \label{creating-dumb} | 
 | 1140 |  | 
 | 1141 | \XXX{Need to document absolute vs. prefix-relative packages here, but | 
 | 1142 |   first I have to implement it!} | 
 | 1143 |  | 
 | 1144 |  | 
 | 1145 | \subsection{Creating RPM packages} | 
 | 1146 | \label{creating-rpms} | 
 | 1147 |  | 
| Andrew M. Kuchling | 40df710 | 2002-05-08 13:39:03 +0000 | [diff] [blame] | 1148 | The RPM format is used by many popular Linux distributions, including | 
| Greg Ward | b652897 | 2000-09-07 02:40:37 +0000 | [diff] [blame] | 1149 | Red Hat, SuSE, and Mandrake.  If one of these (or any of the other | 
 | 1150 | RPM-based Linux distributions) is your usual environment, creating RPM | 
 | 1151 | packages for other users of that same distribution is trivial. | 
 | 1152 | Depending on the complexity of your module distribution and differences | 
 | 1153 | between Linux distributions, you may also be able to create RPMs that | 
 | 1154 | work on different RPM-based distributions. | 
 | 1155 |  | 
 | 1156 | The usual way to create an RPM of your module distribution is to run the  | 
 | 1157 | \command{bdist\_rpm} command: | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 1158 |  | 
| Greg Ward | b652897 | 2000-09-07 02:40:37 +0000 | [diff] [blame] | 1159 | \begin{verbatim} | 
 | 1160 | python setup.py bdist_rpm | 
 | 1161 | \end{verbatim} | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 1162 |  | 
| Greg Ward | b652897 | 2000-09-07 02:40:37 +0000 | [diff] [blame] | 1163 | or the \command{bdist} command with the \longprogramopt{format} option: | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 1164 |  | 
| Greg Ward | b652897 | 2000-09-07 02:40:37 +0000 | [diff] [blame] | 1165 | \begin{verbatim} | 
 | 1166 | python setup.py bdist --formats=rpm | 
 | 1167 | \end{verbatim} | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 1168 |  | 
| Greg Ward | b652897 | 2000-09-07 02:40:37 +0000 | [diff] [blame] | 1169 | The former allows you to specify RPM-specific options; the latter allows  | 
 | 1170 | you to easily specify multiple formats in one run.  If you need to do | 
 | 1171 | both, you can explicitly specify multiple \command{bdist\_*} commands | 
 | 1172 | and their options: | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 1173 |  | 
| Greg Ward | b652897 | 2000-09-07 02:40:37 +0000 | [diff] [blame] | 1174 | \begin{verbatim} | 
 | 1175 | python setup.py bdist_rpm --packager="John Doe <jdoe@python.net>" \ | 
 | 1176 |                 bdist_wininst --target_version="2.0" | 
 | 1177 | \end{verbatim} | 
 | 1178 |  | 
 | 1179 | Creating RPM packages is driven by a \file{.spec} file, much as using | 
 | 1180 | the Distutils is driven by the setup script.  To make your life easier, | 
 | 1181 | the \command{bdist\_rpm} command normally creates a \file{.spec} file | 
 | 1182 | based on the information you supply in the setup script, on the command | 
 | 1183 | line, and in any Distutils configuration files.  Various options and | 
| Andrew M. Kuchling | da23c4f | 2001-02-17 00:38:48 +0000 | [diff] [blame] | 1184 | sections in the \file{.spec} file are derived from options in the setup | 
| Greg Ward | b652897 | 2000-09-07 02:40:37 +0000 | [diff] [blame] | 1185 | script as follows: | 
 | 1186 | \begin{tableii}{l|l}{textrm}% | 
 | 1187 |   {RPM \file{.spec} file option or section}{Distutils setup script option} | 
 | 1188 |   \lineii{Name}{\option{name}} | 
 | 1189 |   \lineii{Summary (in preamble)}{\option{description}} | 
 | 1190 |   \lineii{Version}{\option{version}} | 
 | 1191 |   \lineii{Vendor}{\option{author} and \option{author\_email}, or \\& | 
 | 1192 |                   \option{maintainer} and \option{maintainer\_email}} | 
 | 1193 |   \lineii{Copyright}{\option{licence}} | 
 | 1194 |   \lineii{Url}{\option{url}} | 
 | 1195 |   \lineii{\%description (section)}{\option{long\_description}} | 
 | 1196 | \end{tableii} | 
 | 1197 |  | 
 | 1198 | Additionally, there many options in \file{.spec} files that don't have | 
 | 1199 | corresponding options in the setup script.  Most of these are handled | 
 | 1200 | through options to the \command{bdist\_rpm} command as follows: | 
 | 1201 | \begin{tableiii}{l|l|l}{textrm}% | 
 | 1202 |   {RPM \file{.spec} file option or section}% | 
 | 1203 |   {\command{bdist\_rpm} option}% | 
 | 1204 |   {default value} | 
 | 1205 |   \lineiii{Release}{\option{release}}{``1''} | 
 | 1206 |   \lineiii{Group}{\option{group}}{``Development/Libraries''} | 
 | 1207 |   \lineiii{Vendor}{\option{vendor}}{(see above)} | 
| Andrew M. Kuchling | da23c4f | 2001-02-17 00:38:48 +0000 | [diff] [blame] | 1208 |   \lineiii{Packager}{\option{packager}}{(none)} | 
 | 1209 |   \lineiii{Provides}{\option{provides}}{(none)} | 
 | 1210 |   \lineiii{Requires}{\option{requires}}{(none)} | 
 | 1211 |   \lineiii{Conflicts}{\option{conflicts}}{(none)} | 
 | 1212 |   \lineiii{Obsoletes}{\option{obsoletes}}{(none)} | 
| Greg Ward | b652897 | 2000-09-07 02:40:37 +0000 | [diff] [blame] | 1213 |   \lineiii{Distribution}{\option{distribution\_name}}{(none)} | 
 | 1214 |   \lineiii{BuildRequires}{\option{build\_requires}}{(none)} | 
 | 1215 |   \lineiii{Icon}{\option{icon}}{(none)} | 
 | 1216 | \end{tableiii} | 
 | 1217 | Obviously, supplying even a few of these options on the command-line | 
 | 1218 | would be tedious and error-prone, so it's usually best to put them in | 
 | 1219 | the setup configuration file, \file{setup.cfg}---see | 
 | 1220 | section~\ref{setup-config}.  If you distribute or package many Python | 
 | 1221 | module distributions, you might want to put options that apply to all of | 
 | 1222 | them in your personal Distutils configuration file | 
 | 1223 | (\file{\textasciitilde/.pydistutils.cfg}). | 
 | 1224 |  | 
 | 1225 | There are three steps to building a binary RPM package, all of which are  | 
 | 1226 | handled automatically by the Distutils: | 
 | 1227 | \begin{enumerate} | 
 | 1228 | \item create a \file{.spec} file, which describes the package (analogous  | 
 | 1229 |   to the Distutils setup script; in fact, much of the information in the  | 
 | 1230 |   setup script winds up in the \file{.spec} file) | 
 | 1231 | \item create the source RPM | 
 | 1232 | \item create the ``binary'' RPM (which may or may not contain binary | 
 | 1233 |   code, depending on whether your module distribution contains Python | 
 | 1234 |   extensions) | 
 | 1235 | \end{enumerate} | 
 | 1236 | Normally, RPM bundles the last two steps together; when you use the | 
 | 1237 | Distutils, all three steps are typically bundled together. | 
 | 1238 |  | 
 | 1239 | If you wish, you can separate these three steps.  You can use the | 
 | 1240 | \longprogramopt{spec-only} option to make \command{bdist\_rpm} just | 
 | 1241 | create the \file{.spec} file and exit; in this case, the \file{.spec} | 
 | 1242 | file will be written to the ``distribution directory''---normally | 
 | 1243 | \file{dist/}, but customizable with the \longprogramopt{dist-dir} | 
 | 1244 | option.  (Normally, the \file{.spec} file winds up deep in the ``build | 
 | 1245 | tree,'' in a temporary directory created by \command{bdist\_rpm}.) | 
 | 1246 |  | 
 | 1247 | \XXX{this isn't implemented yet---is it needed?!} | 
 | 1248 | You can also specify a custom \file{.spec} file with the | 
| Thomas Heller | 5f52f72 | 2001-02-19 17:48:03 +0000 | [diff] [blame] | 1249 | \longprogramopt{spec-file} option; used in conjunction with | 
| Greg Ward | b652897 | 2000-09-07 02:40:37 +0000 | [diff] [blame] | 1250 | \longprogramopt{spec-only}, this gives you an opportunity to customize | 
 | 1251 | the \file{.spec} file manually: | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 1252 |  | 
| Greg Ward | b652897 | 2000-09-07 02:40:37 +0000 | [diff] [blame] | 1253 | \begin{verbatim} | 
 | 1254 | > python setup.py bdist_rpm --spec-only | 
 | 1255 | # ...edit dist/FooBar-1.0.spec | 
 | 1256 | > python setup.py bdist_rpm --spec-file=dist/FooBar-1.0.spec | 
 | 1257 | \end{verbatim} | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 1258 |  | 
| Greg Ward | b652897 | 2000-09-07 02:40:37 +0000 | [diff] [blame] | 1259 | (Although a better way to do this is probably to override the standard | 
 | 1260 | \command{bdist\_rpm} command with one that writes whatever else you want | 
 | 1261 | to the \file{.spec} file; see section~\ref{extending} for information on | 
 | 1262 | extending the Distutils.) | 
 | 1263 |  | 
 | 1264 |  | 
| Andrew M. Kuchling | 40df710 | 2002-05-08 13:39:03 +0000 | [diff] [blame] | 1265 | \subsection{Creating Windows Installers} | 
| Greg Ward | b652897 | 2000-09-07 02:40:37 +0000 | [diff] [blame] | 1266 | \label{creating-wininst} | 
 | 1267 |  | 
| Andrew M. Kuchling | 40df710 | 2002-05-08 13:39:03 +0000 | [diff] [blame] | 1268 | Executable installers are the natural format for binary | 
| Fred Drake | 17f690f | 2001-07-14 02:14:42 +0000 | [diff] [blame] | 1269 | distributions on Windows.  They display a nice graphical user interface, | 
| Andrew M. Kuchling | 40df710 | 2002-05-08 13:39:03 +0000 | [diff] [blame] | 1270 | display some information about the module distribution to be installed taken | 
| Andrew M. Kuchling | d7abe2a | 2002-05-29 17:33:48 +0000 | [diff] [blame] | 1271 | from the metadata in the setup script, let the user select a few | 
| Thomas Heller | 5f52f72 | 2001-02-19 17:48:03 +0000 | [diff] [blame] | 1272 | (currently maybe too few) options, and start or cancel the installation. | 
| Greg Ward | b652897 | 2000-09-07 02:40:37 +0000 | [diff] [blame] | 1273 |  | 
| Andrew M. Kuchling | d7abe2a | 2002-05-29 17:33:48 +0000 | [diff] [blame] | 1274 | Since the metadata is taken from the setup script, creating | 
| Thomas Heller | 5f52f72 | 2001-02-19 17:48:03 +0000 | [diff] [blame] | 1275 | Windows installers is usually as easy as running: | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 1276 |  | 
| Thomas Heller | 5f52f72 | 2001-02-19 17:48:03 +0000 | [diff] [blame] | 1277 | \begin{verbatim} | 
 | 1278 | python setup.py bdist_wininst | 
 | 1279 | \end{verbatim} | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 1280 |  | 
| Thomas Heller | 5f52f72 | 2001-02-19 17:48:03 +0000 | [diff] [blame] | 1281 | or the \command{bdist} command with the \longprogramopt{format} option: | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 1282 |  | 
| Thomas Heller | 5f52f72 | 2001-02-19 17:48:03 +0000 | [diff] [blame] | 1283 | \begin{verbatim} | 
 | 1284 | python setup.py bdist --formats=wininst | 
 | 1285 | \end{verbatim} | 
 | 1286 |  | 
 | 1287 | If you have a pure module distribution (only containing pure | 
 | 1288 | Python modules and packages), the resulting installer will be | 
| Andrew M. Kuchling | 40df710 | 2002-05-08 13:39:03 +0000 | [diff] [blame] | 1289 | version independent and have a name like \file{foo-1.0.win32.exe}. | 
| Thomas Heller | 5f52f72 | 2001-02-19 17:48:03 +0000 | [diff] [blame] | 1290 | These installers can even be created on \UNIX{} or MacOS platforms. | 
 | 1291 |  | 
 | 1292 | If you have a non-pure distribution, the extensions can only be | 
| Andrew M. Kuchling | 40df710 | 2002-05-08 13:39:03 +0000 | [diff] [blame] | 1293 | created on a Windows platform, and will be Python version dependent. | 
| Thomas Heller | 5f52f72 | 2001-02-19 17:48:03 +0000 | [diff] [blame] | 1294 | The installer filename will reflect this and now has the form | 
| Andrew M. Kuchling | 40df710 | 2002-05-08 13:39:03 +0000 | [diff] [blame] | 1295 | \file{foo-1.0.win32-py2.0.exe}. You have to create a separate installer | 
| Thomas Heller | 5f52f72 | 2001-02-19 17:48:03 +0000 | [diff] [blame] | 1296 | for every Python version you want to support. | 
 | 1297 |  | 
 | 1298 | The installer will try to compile pure modules into bytecode after | 
 | 1299 | installation on the target system in normal and optimizing mode. | 
 | 1300 | If you don't want this to happen for some reason, you can run | 
 | 1301 | the bdist_wininst command with the \longprogramopt{no-target-compile} and/or | 
 | 1302 | the \longprogramopt{no-target-optimize} option. | 
| Greg Ward | b652897 | 2000-09-07 02:40:37 +0000 | [diff] [blame] | 1303 |  | 
| Greg Ward | 007c04a | 2002-05-10 14:45:59 +0000 | [diff] [blame] | 1304 | \section{Examples} | 
 | 1305 | \label{examples} | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 1306 |  | 
 | 1307 |  | 
| Greg Ward | 007c04a | 2002-05-10 14:45:59 +0000 | [diff] [blame] | 1308 | \subsection{Pure Python distribution (by module)} | 
 | 1309 | \label{pure-mod} | 
 | 1310 |  | 
 | 1311 | If you're just distributing a couple of modules, especially if they | 
 | 1312 | don't live in a particular package, you can specify them individually | 
 | 1313 | using the \option{py\_modules} option in the setup script. | 
 | 1314 |  | 
 | 1315 | In the simplest case, you'll have two files to worry about: a setup | 
 | 1316 | script and the single module you're distributing, \file{foo.py} in this | 
 | 1317 | example: | 
 | 1318 | \begin{verbatim} | 
 | 1319 | <root>/ | 
 | 1320 |         setup.py | 
 | 1321 |         foo.py | 
 | 1322 | \end{verbatim} | 
 | 1323 | (In all diagrams in this section, \verb|<root>| will refer to the | 
 | 1324 | distribution root directory.)  A minimal setup script to describe this | 
 | 1325 | situation would be: | 
 | 1326 | \begin{verbatim} | 
 | 1327 | from distutils.core import setup | 
 | 1328 | setup(name = "foo", version = "1.0", | 
 | 1329 |       py_modules = ["foo"]) | 
 | 1330 | \end{verbatim} | 
 | 1331 | Note that the name of the distribution is specified independently with | 
 | 1332 | the \option{name} option, and there's no rule that says it has to be the | 
 | 1333 | same as the name of the sole module in the distribution (although that's | 
 | 1334 | probably a good convention to follow).  However, the distribution name | 
 | 1335 | is used to generate filenames, so you should stick to letters, digits, | 
 | 1336 | underscores, and hyphens. | 
 | 1337 |  | 
 | 1338 | Since \option{py\_modules} is a list, you can of course specify multiple  | 
 | 1339 | modules, eg. if you're distributing modules \module{foo} and | 
 | 1340 | \module{bar}, your setup might look like this: | 
 | 1341 | \begin{verbatim} | 
 | 1342 | <root>/ | 
 | 1343 |         setup.py | 
 | 1344 |         foo.py | 
 | 1345 |         bar.py | 
 | 1346 | \end{verbatim} | 
 | 1347 | and the setup script might be | 
 | 1348 | \begin{verbatim} | 
 | 1349 | from distutils.core import setup | 
 | 1350 | setup(name = "foobar", version = "1.0", | 
 | 1351 |       py_modules = ["foo", "bar"]) | 
 | 1352 | \end{verbatim} | 
 | 1353 |  | 
 | 1354 | You can put module source files into another directory, but if you have | 
 | 1355 | enough modules to do that, it's probably easier to specify modules by | 
 | 1356 | package rather than listing them individually. | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 1357 |  | 
 | 1358 |  | 
| Greg Ward | 007c04a | 2002-05-10 14:45:59 +0000 | [diff] [blame] | 1359 | \subsection{Pure Python distribution (by package)} | 
 | 1360 | \label{pure-pkg} | 
 | 1361 |  | 
 | 1362 | If you have more than a couple of modules to distribute, especially if | 
 | 1363 | they are in multiple packages, it's probably easier to specify whole | 
 | 1364 | packages rather than individual modules.  This works even if your | 
 | 1365 | modules are not in a package; you can just tell the Distutils to process | 
 | 1366 | modules from the root package, and that works the same as any other | 
 | 1367 | package (except that you don't have to have an \file{\_\_init\_\_.py} | 
 | 1368 | file). | 
 | 1369 |  | 
 | 1370 | The setup script from the last example could also be written as | 
 | 1371 | \begin{verbatim} | 
 | 1372 | from distutils.core import setup | 
 | 1373 | setup(name = "foobar", version = "1.0", | 
 | 1374 |       packages = [""]) | 
 | 1375 | \end{verbatim} | 
 | 1376 | (The empty string stands for the root package.) | 
 | 1377 |  | 
 | 1378 | If those two files are moved into a subdirectory, but remain in the root | 
 | 1379 | package, e.g.: | 
 | 1380 | \begin{verbatim} | 
 | 1381 | <root>/ | 
 | 1382 |         setup.py | 
 | 1383 |         src/      foo.py | 
 | 1384 |                   bar.py | 
 | 1385 | \end{verbatim} | 
 | 1386 | then you would still specify the root package, but you have to tell the | 
 | 1387 | Distutils where source files in the root package live: | 
 | 1388 | \begin{verbatim} | 
 | 1389 | from distutils.core import setup | 
 | 1390 | setup(name = "foobar", version = "1.0", | 
 | 1391 |       package_dir = {"": "src"}, | 
 | 1392 |       packages = [""]) | 
 | 1393 | \end{verbatim} | 
 | 1394 |  | 
 | 1395 | More typically, though, you will want to distribute multiple modules in | 
 | 1396 | the same package (or in sub-packages).  For example, if the \module{foo}  | 
 | 1397 | and \module{bar} modules belong in package \module{foobar}, one way to | 
 | 1398 | layout your source tree is | 
 | 1399 | \begin{verbatim} | 
 | 1400 | <root>/ | 
 | 1401 |         setup.py | 
 | 1402 |         foobar/ | 
 | 1403 |                  __init__.py | 
 | 1404 |                  foo.py | 
 | 1405 |                  bar.py | 
 | 1406 | \end{verbatim} | 
 | 1407 | This is in fact the default layout expected by the Distutils, and the | 
 | 1408 | one that requires the least work to describe in your setup script: | 
 | 1409 | \begin{verbatim} | 
 | 1410 | from distutils.core import setup | 
 | 1411 | setup(name = "foobar", version = "1.0", | 
 | 1412 |       packages = ["foobar"]) | 
 | 1413 | \end{verbatim} | 
 | 1414 |  | 
 | 1415 | If you want to put modules in directories not named for their package, | 
 | 1416 | then you need to use the \option{package\_dir} option again.  For | 
 | 1417 | example, if the \file{src} directory holds modules in the | 
 | 1418 | \module{foobar} package: | 
 | 1419 | \begin{verbatim} | 
 | 1420 | <root>/ | 
 | 1421 |         setup.py | 
 | 1422 |         src/ | 
 | 1423 |                  __init__.py | 
 | 1424 |                  foo.py | 
 | 1425 |                  bar.py | 
 | 1426 | \end{verbatim} | 
 | 1427 | an appropriate setup script would be | 
 | 1428 | \begin{verbatim} | 
 | 1429 | from distutils.core import setup | 
 | 1430 | setup(name = "foobar", version = "1.0", | 
 | 1431 |       package_dir = {"foobar" : "src"}, | 
 | 1432 |       packages = ["foobar"]) | 
 | 1433 | \end{verbatim} | 
 | 1434 |  | 
 | 1435 | Or, you might put modules from your main package right in the | 
 | 1436 | distribution root: | 
 | 1437 | \begin{verbatim} | 
 | 1438 | <root>/ | 
 | 1439 |         setup.py | 
 | 1440 |         __init__.py | 
 | 1441 |         foo.py | 
 | 1442 |         bar.py | 
 | 1443 | \end{verbatim} | 
 | 1444 | in which case your setup script would be | 
 | 1445 | \begin{verbatim} | 
 | 1446 | from distutils.core import setup | 
 | 1447 | setup(name = "foobar", version = "1.0", | 
 | 1448 |       package_dir = {"foobar" : ""}, | 
 | 1449 |       packages = ["foobar"]) | 
 | 1450 | \end{verbatim} | 
 | 1451 | (The empty string also stands for the current directory.) | 
 | 1452 |  | 
 | 1453 | If you have sub-packages, they must be explicitly listed in | 
 | 1454 | \option{packages}, but any entries in \option{package\_dir} | 
 | 1455 | automatically extend to sub-packages.  (In other words, the Distutils | 
 | 1456 | does \emph{not} scan your source tree, trying to figure out which | 
 | 1457 | directories correspond to Python packages by looking for | 
 | 1458 | \file{\_\_init\_\_.py} files.)  Thus, if the default layout grows a | 
 | 1459 | sub-package: | 
 | 1460 | \begin{verbatim} | 
 | 1461 | <root>/ | 
 | 1462 |         setup.py | 
 | 1463 |         foobar/ | 
 | 1464 |                  __init__.py | 
 | 1465 |                  foo.py | 
 | 1466 |                  bar.py | 
 | 1467 |                  subfoo/ | 
 | 1468 |                            __init__.py | 
 | 1469 |                            blah.py | 
 | 1470 | \end{verbatim} | 
 | 1471 | then the corresponding setup script would be | 
 | 1472 | \begin{verbatim} | 
 | 1473 | from distutils.core import setup | 
 | 1474 | setup(name = "foobar", version = "1.0", | 
 | 1475 |       packages = ["foobar", "foobar.subfoo"]) | 
 | 1476 | \end{verbatim} | 
 | 1477 | (Again, the empty string in \option{package\_dir} stands for the current | 
 | 1478 | directory.) | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 1479 |  | 
 | 1480 |  | 
| Greg Ward | 007c04a | 2002-05-10 14:45:59 +0000 | [diff] [blame] | 1481 | \subsection{Single extension module} | 
 | 1482 | \label{single-ext} | 
 | 1483 |  | 
 | 1484 | Extension modules are specified using the \option{ext\_modules} option. | 
 | 1485 | \option{package\_dir} has no effect on where extension source files are | 
 | 1486 | found; it only affects the source for pure Python modules.  The simplest  | 
 | 1487 | case, a single extension module in a single C source file, is: | 
 | 1488 | \begin{verbatim} | 
 | 1489 | <root>/ | 
 | 1490 |         setup.py | 
 | 1491 |         foo.c | 
 | 1492 | \end{verbatim} | 
 | 1493 | If the \module{foo} extension belongs in the root package, the setup | 
 | 1494 | script for this could be | 
 | 1495 | \begin{verbatim} | 
 | 1496 | from distutils.core import setup | 
 | 1497 | setup(name = "foobar", version = "1.0", | 
 | 1498 |       ext_modules = [Extension("foo", ["foo.c"])]) | 
 | 1499 | \end{verbatim} | 
 | 1500 |  | 
 | 1501 | If the extension actually belongs in a package, say \module{foopkg}, | 
 | 1502 | then  | 
 | 1503 |  | 
 | 1504 | With exactly the same source tree layout, this extension can be put in | 
 | 1505 | the \module{foopkg} package simply by changing the name of the | 
 | 1506 | extension: | 
 | 1507 | \begin{verbatim} | 
 | 1508 | from distutils.core import setup | 
 | 1509 | setup(name = "foobar", version = "1.0", | 
 | 1510 |       ext_modules = [Extension("foopkg.foo", ["foo.c"])]) | 
 | 1511 | \end{verbatim} | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 1512 |  | 
 | 1513 |  | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 1514 | %\subsection{Multiple extension modules} | 
 | 1515 | %\label{multiple-ext} | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 1516 |  | 
 | 1517 |  | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 1518 | %\subsection{Putting it all together} | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 1519 |  | 
 | 1520 |  | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 1521 | %\section{Extending the Distutils} | 
 | 1522 | %\label{extending} | 
| Greg Ward | 4a9e722 | 2000-04-25 02:57:36 +0000 | [diff] [blame] | 1523 |  | 
 | 1524 |  | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 1525 | %\subsection{Extending existing commands} | 
 | 1526 | %\label{extend-existing} | 
| Greg Ward | 4a9e722 | 2000-04-25 02:57:36 +0000 | [diff] [blame] | 1527 |  | 
 | 1528 |  | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 1529 | %\subsection{Writing new commands} | 
 | 1530 | %\label{new-commands} | 
| Greg Ward | 4a9e722 | 2000-04-25 02:57:36 +0000 | [diff] [blame] | 1531 |  | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 1532 | %\XXX{Would an uninstall command be a good example here?} | 
| Thomas Heller | 5f52f72 | 2001-02-19 17:48:03 +0000 | [diff] [blame] | 1533 |  | 
| Greg Ward | 4a9e722 | 2000-04-25 02:57:36 +0000 | [diff] [blame] | 1534 |  | 
 | 1535 |  | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 1536 | \section{Reference} | 
| Greg Ward | 47f99a6 | 2000-09-04 20:07:15 +0000 | [diff] [blame] | 1537 | \label{reference} | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 1538 |  | 
 | 1539 |  | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 1540 | %\subsection{Building modules: the \protect\command{build} command family} | 
 | 1541 | %\label{build-cmds} | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 1542 |  | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 1543 | %\subsubsection{\protect\command{build}} | 
 | 1544 | %\label{build-cmd} | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 1545 |  | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 1546 | %\subsubsection{\protect\command{build\_py}} | 
 | 1547 | %\label{build-py-cmd} | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 1548 |  | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 1549 | %\subsubsection{\protect\command{build\_ext}} | 
 | 1550 | %\label{build-ext-cmd} | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 1551 |  | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 1552 | %\subsubsection{\protect\command{build\_clib}} | 
 | 1553 | %\label{build-clib-cmd} | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 1554 |  | 
 | 1555 |  | 
| Greg Ward | facb8db | 2000-04-09 04:32:40 +0000 | [diff] [blame] | 1556 | \subsection{Installing modules: the \protect\command{install} command family} | 
| Greg Ward | e78298a | 2000-04-28 17:12:24 +0000 | [diff] [blame] | 1557 | \label{install-cmd} | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 1558 |  | 
| Gregory P. Smith | 147e5f3 | 2000-05-12 00:58:18 +0000 | [diff] [blame] | 1559 | The install command ensures that the build commands have been run and then | 
 | 1560 | runs the subcommands \command{install\_lib}, | 
 | 1561 | \command{install\_data} and | 
 | 1562 | \command{install\_scripts}. | 
 | 1563 |  | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 1564 | %\subsubsection{\protect\command{install\_lib}} | 
 | 1565 | %\label{install-lib-cmd} | 
| Gregory P. Smith | 147e5f3 | 2000-05-12 00:58:18 +0000 | [diff] [blame] | 1566 |  | 
 | 1567 | \subsubsection{\protect\command{install\_data}} | 
| Greg Ward | 1365a30 | 2000-08-31 14:47:05 +0000 | [diff] [blame] | 1568 | \label{install-data-cmd} | 
| Gregory P. Smith | 147e5f3 | 2000-05-12 00:58:18 +0000 | [diff] [blame] | 1569 | This command installs all data files provided with the distribution. | 
 | 1570 |  | 
 | 1571 | \subsubsection{\protect\command{install\_scripts}} | 
| Greg Ward | 1365a30 | 2000-08-31 14:47:05 +0000 | [diff] [blame] | 1572 | \label{install-scripts-cmd} | 
| Gregory P. Smith | 147e5f3 | 2000-05-12 00:58:18 +0000 | [diff] [blame] | 1573 | This command installs all (Python) scripts in the distribution. | 
 | 1574 |  | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 1575 |  | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 1576 | %\subsection{Cleaning up: the \protect\command{clean} command} | 
 | 1577 | %\label{clean-cmd} | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 1578 |  | 
 | 1579 |  | 
| Fred Drake | eff9a87 | 2000-10-26 16:41:03 +0000 | [diff] [blame] | 1580 | \subsection{Creating a source distribution: the | 
 | 1581 |             \protect\command{sdist} command} | 
| Greg Ward | e78298a | 2000-04-28 17:12:24 +0000 | [diff] [blame] | 1582 | \label{sdist-cmd} | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 1583 |  | 
 | 1584 |  | 
 | 1585 | \XXX{fragment moved down from above: needs context!} | 
| Greg Ward | b652897 | 2000-09-07 02:40:37 +0000 | [diff] [blame] | 1586 |  | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 1587 | The manifest template commands are: | 
 | 1588 | \begin{tableii}{ll}{command}{Command}{Description} | 
| Greg Ward | 87da1ea | 2000-04-21 04:35:25 +0000 | [diff] [blame] | 1589 |   \lineii{include \var{pat1} \var{pat2} ... } | 
 | 1590 |     {include all files matching any of the listed patterns} | 
 | 1591 |   \lineii{exclude \var{pat1} \var{pat2} ... } | 
 | 1592 |     {exclude all files matching any of the listed patterns} | 
 | 1593 |   \lineii{recursive-include \var{dir} \var{pat1} \var{pat2} ... } | 
 | 1594 |     {include all files under \var{dir} matching any of the listed patterns} | 
 | 1595 |   \lineii{recursive-exclude \var{dir} \var{pat1} \var{pat2} ...} | 
 | 1596 |     {exclude all files under \var{dir} matching any of the listed patterns} | 
 | 1597 |   \lineii{global-include \var{pat1} \var{pat2} ...} | 
| Greg Ward | 1bbe329 | 2000-06-25 03:14:13 +0000 | [diff] [blame] | 1598 |     {include all files anywhere in the source tree matching\\& | 
| Greg Ward | 87da1ea | 2000-04-21 04:35:25 +0000 | [diff] [blame] | 1599 |      any of the listed patterns} | 
 | 1600 |   \lineii{global-exclude \var{pat1} \var{pat2} ...} | 
| Greg Ward | 1bbe329 | 2000-06-25 03:14:13 +0000 | [diff] [blame] | 1601 |     {exclude all files anywhere in the source tree matching\\& | 
| Greg Ward | 87da1ea | 2000-04-21 04:35:25 +0000 | [diff] [blame] | 1602 |      any of the listed patterns} | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 1603 |   \lineii{prune \var{dir}}{exclude all files under \var{dir}} | 
 | 1604 |   \lineii{graft \var{dir}}{include all files under \var{dir}} | 
 | 1605 | \end{tableii} | 
| Fred Drake | eff9a87 | 2000-10-26 16:41:03 +0000 | [diff] [blame] | 1606 | The patterns here are \UNIX-style ``glob'' patterns: \code{*} matches any | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 1607 | sequence of regular filename characters, \code{?} matches any single | 
 | 1608 | regular filename character, and \code{[\var{range}]} matches any of the | 
 | 1609 | characters in \var{range} (e.g., \code{a-z}, \code{a-zA-Z}, | 
| Greg Ward | facb8db | 2000-04-09 04:32:40 +0000 | [diff] [blame] | 1610 | \code{a-f0-9\_.}).  The definition of ``regular filename character'' is | 
| Fred Drake | eff9a87 | 2000-10-26 16:41:03 +0000 | [diff] [blame] | 1611 | platform-specific: on \UNIX{} it is anything except slash; on Windows | 
 | 1612 | anything except backslash or colon; on MacOS anything except colon. | 
| Greg Ward | b652897 | 2000-09-07 02:40:37 +0000 | [diff] [blame] | 1613 |  | 
| Fred Drake | eff9a87 | 2000-10-26 16:41:03 +0000 | [diff] [blame] | 1614 | \XXX{Windows and MacOS support not there yet} | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 1615 |  | 
 | 1616 |  | 
| Fred Drake | a09262e | 2001-03-01 18:35:43 +0000 | [diff] [blame] | 1617 | %\subsection{Creating a built distribution: the | 
 | 1618 | %  \protect\command{bdist} command family} | 
 | 1619 | %\label{bdist-cmds} | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 1620 |  | 
 | 1621 |  | 
| Fred Drake | ab70b38 | 2001-08-02 15:13:15 +0000 | [diff] [blame] | 1622 | %\subsubsection{\protect\command{bdist}} | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 1623 |  | 
| Fred Drake | ab70b38 | 2001-08-02 15:13:15 +0000 | [diff] [blame] | 1624 | %\subsubsection{\protect\command{bdist\_dumb}} | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 1625 |  | 
| Fred Drake | ab70b38 | 2001-08-02 15:13:15 +0000 | [diff] [blame] | 1626 | %\subsubsection{\protect\command{bdist\_rpm}} | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 1627 |  | 
| Fred Drake | ab70b38 | 2001-08-02 15:13:15 +0000 | [diff] [blame] | 1628 | %\subsubsection{\protect\command{bdist\_wininst}} | 
 | 1629 |  | 
 | 1630 |  | 
 | 1631 | \input{sysconfig} | 
| Greg Ward | 16aafcd | 2000-04-09 04:06:44 +0000 | [diff] [blame] | 1632 |  | 
 | 1633 |  | 
| Greg Ward | abc5216 | 2000-02-26 00:52:48 +0000 | [diff] [blame] | 1634 | \end{document} |