2007-08-15 11:28:22 -03:00
|
|
|
.. _setup-script:
|
|
|
|
|
|
|
|
************************
|
|
|
|
Writing the Setup Script
|
|
|
|
************************
|
|
|
|
|
|
|
|
The setup script is the centre of all activity in building, distributing, and
|
|
|
|
installing modules using the Distutils. The main purpose of the setup script is
|
|
|
|
to describe your module distribution to the Distutils, so that the various
|
|
|
|
commands that operate on your modules do the right thing. As we saw in section
|
|
|
|
:ref:`distutils-simple-example` above, the setup script consists mainly of a call to
|
|
|
|
:func:`setup`, and most information supplied to the Distutils by the module
|
|
|
|
developer is supplied as keyword arguments to :func:`setup`.
|
|
|
|
|
|
|
|
Here's a slightly more involved example, which we'll follow for the next couple
|
|
|
|
of sections: the Distutils' own setup script. (Keep in mind that although the
|
|
|
|
Distutils are included with Python 1.6 and later, they also have an independent
|
|
|
|
existence so that Python 1.5.2 users can use them to install other module
|
|
|
|
distributions. The Distutils' own setup script, shown here, is used to install
|
|
|
|
the package into Python 1.5.2.) ::
|
|
|
|
|
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
from distutils.core import setup
|
|
|
|
|
|
|
|
setup(name='Distutils',
|
|
|
|
version='1.0',
|
|
|
|
description='Python Distribution Utilities',
|
|
|
|
author='Greg Ward',
|
|
|
|
author_email='gward@python.net',
|
|
|
|
url='http://www.python.org/sigs/distutils-sig/',
|
|
|
|
packages=['distutils', 'distutils.command'],
|
|
|
|
)
|
|
|
|
|
|
|
|
There are only two differences between this and the trivial one-file
|
|
|
|
distribution presented in section :ref:`distutils-simple-example`: more metadata, and the
|
|
|
|
specification of pure Python modules by package, rather than by module. This is
|
|
|
|
important since the Distutils consist of a couple of dozen modules split into
|
|
|
|
(so far) two packages; an explicit list of every module would be tedious to
|
|
|
|
generate and difficult to maintain. For more information on the additional
|
|
|
|
meta-data, see section :ref:`meta-data`.
|
|
|
|
|
|
|
|
Note that any pathnames (files or directories) supplied in the setup script
|
|
|
|
should be written using the Unix convention, i.e. slash-separated. The
|
|
|
|
Distutils will take care of converting this platform-neutral representation into
|
|
|
|
whatever is appropriate on your current platform before actually using the
|
|
|
|
pathname. This makes your setup script portable across operating systems, which
|
|
|
|
of course is one of the major goals of the Distutils. In this spirit, all
|
2008-09-13 14:46:05 -03:00
|
|
|
pathnames in this document are slash-separated.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
This, of course, only applies to pathnames given to Distutils functions. If
|
|
|
|
you, for example, use standard Python functions such as :func:`glob.glob` or
|
|
|
|
:func:`os.listdir` to specify files, you should be careful to write portable
|
|
|
|
code instead of hardcoding path separators::
|
|
|
|
|
|
|
|
glob.glob(os.path.join('mydir', 'subdir', '*.html'))
|
|
|
|
os.listdir(os.path.join('mydir', 'subdir'))
|
|
|
|
|
|
|
|
|
|
|
|
.. _listing-packages:
|
|
|
|
|
|
|
|
Listing whole packages
|
|
|
|
======================
|
|
|
|
|
|
|
|
The :option:`packages` option tells the Distutils to process (build, distribute,
|
|
|
|
install, etc.) all pure Python modules found in each package mentioned in the
|
|
|
|
:option:`packages` list. In order to do this, of course, there has to be a
|
|
|
|
correspondence between package names and directories in the filesystem. The
|
|
|
|
default correspondence is the most obvious one, i.e. package :mod:`distutils` is
|
|
|
|
found in the directory :file:`distutils` relative to the distribution root.
|
|
|
|
Thus, when you say ``packages = ['foo']`` in your setup script, you are
|
|
|
|
promising that the Distutils will find a file :file:`foo/__init__.py` (which
|
|
|
|
might be spelled differently on your system, but you get the idea) relative to
|
|
|
|
the directory where your setup script lives. If you break this promise, the
|
|
|
|
Distutils will issue a warning but still process the broken package anyways.
|
|
|
|
|
|
|
|
If you use a different convention to lay out your source directory, that's no
|
|
|
|
problem: you just have to supply the :option:`package_dir` option to tell the
|
|
|
|
Distutils about your convention. For example, say you keep all Python source
|
|
|
|
under :file:`lib`, so that modules in the "root package" (i.e., not in any
|
|
|
|
package at all) are in :file:`lib`, modules in the :mod:`foo` package are in
|
|
|
|
:file:`lib/foo`, and so forth. Then you would put ::
|
|
|
|
|
|
|
|
package_dir = {'': 'lib'}
|
|
|
|
|
|
|
|
in your setup script. The keys to this dictionary are package names, and an
|
|
|
|
empty package name stands for the root package. The values are directory names
|
|
|
|
relative to your distribution root. In this case, when you say ``packages =
|
|
|
|
['foo']``, you are promising that the file :file:`lib/foo/__init__.py` exists.
|
|
|
|
|
|
|
|
Another possible convention is to put the :mod:`foo` package right in
|
|
|
|
:file:`lib`, the :mod:`foo.bar` package in :file:`lib/bar`, etc. This would be
|
|
|
|
written in the setup script as ::
|
|
|
|
|
|
|
|
package_dir = {'foo': 'lib'}
|
|
|
|
|
|
|
|
A ``package: dir`` entry in the :option:`package_dir` dictionary implicitly
|
|
|
|
applies to all packages below *package*, so the :mod:`foo.bar` case is
|
|
|
|
automatically handled here. In this example, having ``packages = ['foo',
|
|
|
|
'foo.bar']`` tells the Distutils to look for :file:`lib/__init__.py` and
|
|
|
|
:file:`lib/bar/__init__.py`. (Keep in mind that although :option:`package_dir`
|
|
|
|
applies recursively, you must explicitly list all packages in
|
|
|
|
:option:`packages`: the Distutils will *not* recursively scan your source tree
|
|
|
|
looking for any directory with an :file:`__init__.py` file.)
|
|
|
|
|
|
|
|
|
|
|
|
.. _listing-modules:
|
|
|
|
|
|
|
|
Listing individual modules
|
|
|
|
==========================
|
|
|
|
|
|
|
|
For a small module distribution, you might prefer to list all modules rather
|
|
|
|
than listing packages---especially the case of a single module that goes in the
|
|
|
|
"root package" (i.e., no package at all). This simplest case was shown in
|
|
|
|
section :ref:`distutils-simple-example`; here is a slightly more involved example::
|
|
|
|
|
|
|
|
py_modules = ['mod1', 'pkg.mod2']
|
|
|
|
|
|
|
|
This describes two modules, one of them in the "root" package, the other in the
|
|
|
|
:mod:`pkg` package. Again, the default package/directory layout implies that
|
|
|
|
these two modules can be found in :file:`mod1.py` and :file:`pkg/mod2.py`, and
|
|
|
|
that :file:`pkg/__init__.py` exists as well. And again, you can override the
|
|
|
|
package/directory correspondence using the :option:`package_dir` option.
|
|
|
|
|
|
|
|
|
|
|
|
.. _describing-extensions:
|
|
|
|
|
|
|
|
Describing extension modules
|
|
|
|
============================
|
|
|
|
|
|
|
|
Just as writing Python extension modules is a bit more complicated than writing
|
|
|
|
pure Python modules, describing them to the Distutils is a bit more complicated.
|
|
|
|
Unlike pure modules, it's not enough just to list modules or packages and expect
|
|
|
|
the Distutils to go out and find the right files; you have to specify the
|
|
|
|
extension name, source file(s), and any compile/link requirements (include
|
|
|
|
directories, libraries to link with, etc.).
|
|
|
|
|
Merged revisions 59605-59624 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r59606 | georg.brandl | 2007-12-29 11:57:00 +0100 (Sat, 29 Dec 2007) | 2 lines
Some cleanup in the docs.
........
r59611 | martin.v.loewis | 2007-12-29 19:49:21 +0100 (Sat, 29 Dec 2007) | 2 lines
Bug #1699: Define _BSD_SOURCE only on OpenBSD.
........
r59612 | raymond.hettinger | 2007-12-29 23:09:34 +0100 (Sat, 29 Dec 2007) | 1 line
Simpler documentation for itertools.tee(). Should be backported.
........
r59613 | raymond.hettinger | 2007-12-29 23:16:24 +0100 (Sat, 29 Dec 2007) | 1 line
Improve docs for itertools.groupby(). The use of xrange(0) to create a unique object is less obvious than object().
........
r59620 | christian.heimes | 2007-12-31 15:47:07 +0100 (Mon, 31 Dec 2007) | 3 lines
Added wininst-9.0.exe executable for VS 2008
Integrated bdist_wininst into PCBuild9 directory
........
r59621 | christian.heimes | 2007-12-31 15:51:18 +0100 (Mon, 31 Dec 2007) | 1 line
Moved PCbuild directory to PC/VS7.1
........
r59622 | christian.heimes | 2007-12-31 15:59:26 +0100 (Mon, 31 Dec 2007) | 1 line
Fix paths for build bot
........
r59623 | christian.heimes | 2007-12-31 16:02:41 +0100 (Mon, 31 Dec 2007) | 1 line
Fix paths for build bot, part 2
........
r59624 | christian.heimes | 2007-12-31 16:18:55 +0100 (Mon, 31 Dec 2007) | 1 line
Renamed PCBuild9 directory to PCBuild
........
2007-12-31 12:14:33 -04:00
|
|
|
.. XXX read over this section
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
All of this is done through another keyword argument to :func:`setup`, the
|
|
|
|
:option:`ext_modules` option. :option:`ext_modules` is just a list of
|
|
|
|
:class:`Extension` instances, each of which describes a single extension module.
|
|
|
|
Suppose your distribution includes a single extension, called :mod:`foo` and
|
|
|
|
implemented by :file:`foo.c`. If no additional instructions to the
|
|
|
|
compiler/linker are needed, describing this extension is quite simple::
|
|
|
|
|
|
|
|
Extension('foo', ['foo.c'])
|
|
|
|
|
|
|
|
The :class:`Extension` class can be imported from :mod:`distutils.core` along
|
|
|
|
with :func:`setup`. Thus, the setup script for a module distribution that
|
|
|
|
contains only this one extension and nothing else might be::
|
|
|
|
|
|
|
|
from distutils.core import setup, Extension
|
|
|
|
setup(name='foo',
|
|
|
|
version='1.0',
|
|
|
|
ext_modules=[Extension('foo', ['foo.c'])],
|
|
|
|
)
|
|
|
|
|
|
|
|
The :class:`Extension` class (actually, the underlying extension-building
|
|
|
|
machinery implemented by the :command:`build_ext` command) supports a great deal
|
|
|
|
of flexibility in describing Python extensions, which is explained in the
|
|
|
|
following sections.
|
|
|
|
|
|
|
|
|
|
|
|
Extension names and packages
|
|
|
|
----------------------------
|
|
|
|
|
|
|
|
The first argument to the :class:`Extension` constructor is always the name of
|
|
|
|
the extension, including any package names. For example, ::
|
|
|
|
|
|
|
|
Extension('foo', ['src/foo1.c', 'src/foo2.c'])
|
|
|
|
|
|
|
|
describes an extension that lives in the root package, while ::
|
|
|
|
|
|
|
|
Extension('pkg.foo', ['src/foo1.c', 'src/foo2.c'])
|
|
|
|
|
|
|
|
describes the same extension in the :mod:`pkg` package. The source files and
|
|
|
|
resulting object code are identical in both cases; the only difference is where
|
|
|
|
in the filesystem (and therefore where in Python's namespace hierarchy) the
|
|
|
|
resulting extension lives.
|
|
|
|
|
|
|
|
If you have a number of extensions all in the same package (or all under the
|
|
|
|
same base package), use the :option:`ext_package` keyword argument to
|
|
|
|
:func:`setup`. For example, ::
|
|
|
|
|
Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,60505-60506,60508-60509,60523-60524,60532,60543,60545,60547-60548,60552,60554,60556-60559,60561-60562,60569,60571-60572,60574,60576-60583,60585-60586,60589,60591,60594-60595,60597-60598,60600-60601,60606-60612,60615,60617,60619-60621,60623-60625,60627-60629,60631,60633,60635,60647,60650,60652,60654,60656,60658-60659,60664-60666,60668-60670,60672,60676,60678,60680-60683,60685-60686,60688,60690,60692-60694,60697-60700,60705-60706,60708,60711,60714,60720,60724-60730,60732,60736,60742,60744,60746,60748,60750-60751,60753,60756-60757,60759-60761,60763-60764,60766,60769-60770,60774-60784,60787-60789,60793,60796,60799-60809,60812-60813,60815-60821,60823-60826,60828-60829,60831-60834,60836,60838-60839,60846-60849,60852-60854,60856-60859,60861-60870,60874-60875,60880-60881,60886,60888-60890,60892,60894-60898,60900-60931,60933-60958 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r60901 | eric.smith | 2008-02-19 14:21:56 +0100 (Tue, 19 Feb 2008) | 1 line
Added PEP 3101.
........
r60907 | georg.brandl | 2008-02-20 20:12:36 +0100 (Wed, 20 Feb 2008) | 2 lines
Fixes contributed by Ori Avtalion.
........
r60909 | eric.smith | 2008-02-21 00:34:22 +0100 (Thu, 21 Feb 2008) | 1 line
Trim leading zeros from a floating point exponent, per C99. See issue 1600. As far as I know, this only affects Windows. Add float type 'n' to PyOS_ascii_formatd (see PEP 3101 for 'n' description).
........
r60910 | eric.smith | 2008-02-21 00:39:28 +0100 (Thu, 21 Feb 2008) | 1 line
Now that PyOS_ascii_formatd supports the 'n' format, simplify the float formatting code to just call it.
........
r60918 | andrew.kuchling | 2008-02-21 15:23:38 +0100 (Thu, 21 Feb 2008) | 2 lines
Close manifest file.
This change doesn't make any difference to CPython, but is a necessary fix for Jython.
........
r60921 | guido.van.rossum | 2008-02-21 18:46:16 +0100 (Thu, 21 Feb 2008) | 2 lines
Remove news about float repr() -- issue 1580 is still in limbo.
........
r60923 | guido.van.rossum | 2008-02-21 19:18:37 +0100 (Thu, 21 Feb 2008) | 5 lines
Removed uses of dict.has_key() from distutils, and uses of
callable() from copy_reg.py, so the interpreter now starts up
without warnings when '-3' is given. More work like this needs to
be done in the rest of the stdlib.
........
r60924 | thomas.heller | 2008-02-21 19:28:48 +0100 (Thu, 21 Feb 2008) | 4 lines
configure.ac: Remove the configure check for _Bool, it is already done in the
top-level Python configure script.
configure, fficonfig.h.in: regenerated.
........
r60925 | thomas.heller | 2008-02-21 19:52:20 +0100 (Thu, 21 Feb 2008) | 3 lines
Replace 'has_key()' with 'in'.
Replace 'raise Error, stuff' with 'raise Error(stuff)'.
........
r60927 | raymond.hettinger | 2008-02-21 20:24:53 +0100 (Thu, 21 Feb 2008) | 1 line
Update more instances of has_key().
........
r60928 | guido.van.rossum | 2008-02-21 20:46:35 +0100 (Thu, 21 Feb 2008) | 3 lines
Fix a few typos and layout glitches (more work is needed).
Move 2.5 news to Misc/HISTORY.
........
r60936 | georg.brandl | 2008-02-21 21:33:38 +0100 (Thu, 21 Feb 2008) | 2 lines
#2079: typo in userdict docs.
........
r60938 | georg.brandl | 2008-02-21 21:38:13 +0100 (Thu, 21 Feb 2008) | 2 lines
Part of #2154: minimal syntax fixes in doc example snippets.
........
r60942 | raymond.hettinger | 2008-02-22 04:16:42 +0100 (Fri, 22 Feb 2008) | 1 line
First draft for itertools.product(). Docs and other updates forthcoming.
........
r60955 | nick.coghlan | 2008-02-22 11:54:06 +0100 (Fri, 22 Feb 2008) | 1 line
Try to make command line error messages from runpy easier to understand (and suppress traceback cruft from the implicitly invoked runpy machinery)
........
r60956 | georg.brandl | 2008-02-22 13:31:45 +0100 (Fri, 22 Feb 2008) | 2 lines
A lot more typo fixes by Ori Avtalion.
........
r60957 | georg.brandl | 2008-02-22 13:56:34 +0100 (Fri, 22 Feb 2008) | 2 lines
Don't reference pyshell.
........
r60958 | georg.brandl | 2008-02-22 13:57:05 +0100 (Fri, 22 Feb 2008) | 2 lines
Another fix.
........
2008-02-22 12:37:40 -04:00
|
|
|
setup(...,
|
2007-08-15 11:28:22 -03:00
|
|
|
ext_package='pkg',
|
|
|
|
ext_modules=[Extension('foo', ['foo.c']),
|
|
|
|
Extension('subpkg.bar', ['bar.c'])],
|
|
|
|
)
|
|
|
|
|
|
|
|
will compile :file:`foo.c` to the extension :mod:`pkg.foo`, and :file:`bar.c` to
|
|
|
|
:mod:`pkg.subpkg.bar`.
|
|
|
|
|
|
|
|
|
|
|
|
Extension source files
|
|
|
|
----------------------
|
|
|
|
|
|
|
|
The second argument to the :class:`Extension` constructor is a list of source
|
|
|
|
files. Since the Distutils currently only support C, C++, and Objective-C
|
|
|
|
extensions, these are normally C/C++/Objective-C source files. (Be sure to use
|
|
|
|
appropriate extensions to distinguish C++\ source files: :file:`.cc` and
|
|
|
|
:file:`.cpp` seem to be recognized by both Unix and Windows compilers.)
|
|
|
|
|
|
|
|
However, you can also include SWIG interface (:file:`.i`) files in the list; the
|
|
|
|
:command:`build_ext` command knows how to deal with SWIG extensions: it will run
|
|
|
|
SWIG on the interface file and compile the resulting C/C++ file into your
|
|
|
|
extension.
|
|
|
|
|
|
|
|
**\*\*** SWIG support is rough around the edges and largely untested! **\*\***
|
|
|
|
|
|
|
|
This warning notwithstanding, options to SWIG can be currently passed like
|
|
|
|
this::
|
|
|
|
|
Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,60505-60506,60508-60509,60523-60524,60532,60543,60545,60547-60548,60552,60554,60556-60559,60561-60562,60569,60571-60572,60574,60576-60583,60585-60586,60589,60591,60594-60595,60597-60598,60600-60601,60606-60612,60615,60617,60619-60621,60623-60625,60627-60629,60631,60633,60635,60647,60650,60652,60654,60656,60658-60659,60664-60666,60668-60670,60672,60676,60678,60680-60683,60685-60686,60688,60690,60692-60694,60697-60700,60705-60706,60708,60711,60714,60720,60724-60730,60732,60736,60742,60744,60746,60748,60750-60751,60753,60756-60757,60759-60761,60763-60764,60766,60769-60770,60774-60784,60787-60789,60793,60796,60799-60809,60812-60813,60815-60821,60823-60826,60828-60829,60831-60834,60836,60838-60839,60846-60849,60852-60854,60856-60859,60861-60870,60874-60875,60880-60881,60886,60888-60890,60892,60894-60898,60900-60931,60933-60958 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r60901 | eric.smith | 2008-02-19 14:21:56 +0100 (Tue, 19 Feb 2008) | 1 line
Added PEP 3101.
........
r60907 | georg.brandl | 2008-02-20 20:12:36 +0100 (Wed, 20 Feb 2008) | 2 lines
Fixes contributed by Ori Avtalion.
........
r60909 | eric.smith | 2008-02-21 00:34:22 +0100 (Thu, 21 Feb 2008) | 1 line
Trim leading zeros from a floating point exponent, per C99. See issue 1600. As far as I know, this only affects Windows. Add float type 'n' to PyOS_ascii_formatd (see PEP 3101 for 'n' description).
........
r60910 | eric.smith | 2008-02-21 00:39:28 +0100 (Thu, 21 Feb 2008) | 1 line
Now that PyOS_ascii_formatd supports the 'n' format, simplify the float formatting code to just call it.
........
r60918 | andrew.kuchling | 2008-02-21 15:23:38 +0100 (Thu, 21 Feb 2008) | 2 lines
Close manifest file.
This change doesn't make any difference to CPython, but is a necessary fix for Jython.
........
r60921 | guido.van.rossum | 2008-02-21 18:46:16 +0100 (Thu, 21 Feb 2008) | 2 lines
Remove news about float repr() -- issue 1580 is still in limbo.
........
r60923 | guido.van.rossum | 2008-02-21 19:18:37 +0100 (Thu, 21 Feb 2008) | 5 lines
Removed uses of dict.has_key() from distutils, and uses of
callable() from copy_reg.py, so the interpreter now starts up
without warnings when '-3' is given. More work like this needs to
be done in the rest of the stdlib.
........
r60924 | thomas.heller | 2008-02-21 19:28:48 +0100 (Thu, 21 Feb 2008) | 4 lines
configure.ac: Remove the configure check for _Bool, it is already done in the
top-level Python configure script.
configure, fficonfig.h.in: regenerated.
........
r60925 | thomas.heller | 2008-02-21 19:52:20 +0100 (Thu, 21 Feb 2008) | 3 lines
Replace 'has_key()' with 'in'.
Replace 'raise Error, stuff' with 'raise Error(stuff)'.
........
r60927 | raymond.hettinger | 2008-02-21 20:24:53 +0100 (Thu, 21 Feb 2008) | 1 line
Update more instances of has_key().
........
r60928 | guido.van.rossum | 2008-02-21 20:46:35 +0100 (Thu, 21 Feb 2008) | 3 lines
Fix a few typos and layout glitches (more work is needed).
Move 2.5 news to Misc/HISTORY.
........
r60936 | georg.brandl | 2008-02-21 21:33:38 +0100 (Thu, 21 Feb 2008) | 2 lines
#2079: typo in userdict docs.
........
r60938 | georg.brandl | 2008-02-21 21:38:13 +0100 (Thu, 21 Feb 2008) | 2 lines
Part of #2154: minimal syntax fixes in doc example snippets.
........
r60942 | raymond.hettinger | 2008-02-22 04:16:42 +0100 (Fri, 22 Feb 2008) | 1 line
First draft for itertools.product(). Docs and other updates forthcoming.
........
r60955 | nick.coghlan | 2008-02-22 11:54:06 +0100 (Fri, 22 Feb 2008) | 1 line
Try to make command line error messages from runpy easier to understand (and suppress traceback cruft from the implicitly invoked runpy machinery)
........
r60956 | georg.brandl | 2008-02-22 13:31:45 +0100 (Fri, 22 Feb 2008) | 2 lines
A lot more typo fixes by Ori Avtalion.
........
r60957 | georg.brandl | 2008-02-22 13:56:34 +0100 (Fri, 22 Feb 2008) | 2 lines
Don't reference pyshell.
........
r60958 | georg.brandl | 2008-02-22 13:57:05 +0100 (Fri, 22 Feb 2008) | 2 lines
Another fix.
........
2008-02-22 12:37:40 -04:00
|
|
|
setup(...,
|
2009-01-03 17:18:54 -04:00
|
|
|
ext_modules=[Extension('_foo', ['foo.i'],
|
2007-08-15 11:28:22 -03:00
|
|
|
swig_opts=['-modern', '-I../include'])],
|
|
|
|
py_modules=['foo'],
|
|
|
|
)
|
|
|
|
|
|
|
|
Or on the commandline like this::
|
|
|
|
|
|
|
|
> python setup.py build_ext --swig-opts="-modern -I../include"
|
|
|
|
|
|
|
|
On some platforms, you can include non-source files that are processed by the
|
|
|
|
compiler and included in your extension. Currently, this just means Windows
|
|
|
|
message text (:file:`.mc`) files and resource definition (:file:`.rc`) files for
|
|
|
|
Visual C++. These will be compiled to binary resource (:file:`.res`) files and
|
|
|
|
linked into the executable.
|
|
|
|
|
|
|
|
|
|
|
|
Preprocessor options
|
|
|
|
--------------------
|
|
|
|
|
|
|
|
Three optional arguments to :class:`Extension` will help if you need to specify
|
|
|
|
include directories to search or preprocessor macros to define/undefine:
|
|
|
|
``include_dirs``, ``define_macros``, and ``undef_macros``.
|
|
|
|
|
|
|
|
For example, if your extension requires header files in the :file:`include`
|
|
|
|
directory under your distribution root, use the ``include_dirs`` option::
|
|
|
|
|
|
|
|
Extension('foo', ['foo.c'], include_dirs=['include'])
|
|
|
|
|
|
|
|
You can specify absolute directories there; if you know that your extension will
|
|
|
|
only be built on Unix systems with X11R6 installed to :file:`/usr`, you can get
|
|
|
|
away with ::
|
|
|
|
|
|
|
|
Extension('foo', ['foo.c'], include_dirs=['/usr/include/X11'])
|
|
|
|
|
|
|
|
You should avoid this sort of non-portable usage if you plan to distribute your
|
|
|
|
code: it's probably better to write C code like ::
|
|
|
|
|
|
|
|
#include <X11/Xlib.h>
|
|
|
|
|
|
|
|
If you need to include header files from some other Python extension, you can
|
|
|
|
take advantage of the fact that header files are installed in a consistent way
|
|
|
|
by the Distutils :command:`install_header` command. For example, the Numerical
|
|
|
|
Python header files are installed (on a standard Unix installation) to
|
|
|
|
:file:`/usr/local/include/python1.5/Numerical`. (The exact location will differ
|
|
|
|
according to your platform and Python installation.) Since the Python include
|
|
|
|
directory---\ :file:`/usr/local/include/python1.5` in this case---is always
|
|
|
|
included in the search path when building Python extensions, the best approach
|
|
|
|
is to write C code like ::
|
|
|
|
|
|
|
|
#include <Numerical/arrayobject.h>
|
|
|
|
|
|
|
|
If you must put the :file:`Numerical` include directory right into your header
|
|
|
|
search path, though, you can find that directory using the Distutils
|
|
|
|
:mod:`distutils.sysconfig` module::
|
|
|
|
|
|
|
|
from distutils.sysconfig import get_python_inc
|
|
|
|
incdir = os.path.join(get_python_inc(plat_specific=1), 'Numerical')
|
|
|
|
setup(...,
|
|
|
|
Extension(..., include_dirs=[incdir]),
|
|
|
|
)
|
|
|
|
|
|
|
|
Even though this is quite portable---it will work on any Python installation,
|
|
|
|
regardless of platform---it's probably easier to just write your C code in the
|
|
|
|
sensible way.
|
|
|
|
|
|
|
|
You can define and undefine pre-processor macros with the ``define_macros`` and
|
|
|
|
``undef_macros`` options. ``define_macros`` takes a list of ``(name, value)``
|
|
|
|
tuples, where ``name`` is the name of the macro to define (a string) and
|
|
|
|
``value`` is its value: either a string or ``None``. (Defining a macro ``FOO``
|
|
|
|
to ``None`` is the equivalent of a bare ``#define FOO`` in your C source: with
|
|
|
|
most compilers, this sets ``FOO`` to the string ``1``.) ``undef_macros`` is
|
|
|
|
just a list of macros to undefine.
|
|
|
|
|
|
|
|
For example::
|
|
|
|
|
|
|
|
Extension(...,
|
|
|
|
define_macros=[('NDEBUG', '1'),
|
|
|
|
('HAVE_STRFTIME', None)],
|
|
|
|
undef_macros=['HAVE_FOO', 'HAVE_BAR'])
|
|
|
|
|
|
|
|
is the equivalent of having this at the top of every C source file::
|
|
|
|
|
|
|
|
#define NDEBUG 1
|
|
|
|
#define HAVE_STRFTIME
|
|
|
|
#undef HAVE_FOO
|
|
|
|
#undef HAVE_BAR
|
|
|
|
|
|
|
|
|
|
|
|
Library options
|
|
|
|
---------------
|
|
|
|
|
|
|
|
You can also specify the libraries to link against when building your extension,
|
|
|
|
and the directories to search for those libraries. The ``libraries`` option is
|
|
|
|
a list of libraries to link against, ``library_dirs`` is a list of directories
|
|
|
|
to search for libraries at link-time, and ``runtime_library_dirs`` is a list of
|
|
|
|
directories to search for shared (dynamically loaded) libraries at run-time.
|
|
|
|
|
|
|
|
For example, if you need to link against libraries known to be in the standard
|
|
|
|
library search path on target systems ::
|
|
|
|
|
|
|
|
Extension(...,
|
2008-05-26 07:29:35 -03:00
|
|
|
libraries=['_gdbm', 'readline'])
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
If you need to link with libraries in a non-standard location, you'll have to
|
|
|
|
include the location in ``library_dirs``::
|
|
|
|
|
|
|
|
Extension(...,
|
|
|
|
library_dirs=['/usr/X11R6/lib'],
|
|
|
|
libraries=['X11', 'Xt'])
|
|
|
|
|
|
|
|
(Again, this sort of non-portable construct should be avoided if you intend to
|
|
|
|
distribute your code.)
|
|
|
|
|
|
|
|
**\*\*** Should mention clib libraries here or somewhere else! **\*\***
|
|
|
|
|
|
|
|
|
|
|
|
Other options
|
|
|
|
-------------
|
|
|
|
|
|
|
|
There are still some other options which can be used to handle special cases.
|
|
|
|
|
|
|
|
The :option:`extra_objects` option is a list of object files to be passed to the
|
|
|
|
linker. These files must not have extensions, as the default extension for the
|
|
|
|
compiler is used.
|
|
|
|
|
|
|
|
:option:`extra_compile_args` and :option:`extra_link_args` can be used to
|
|
|
|
specify additional command line options for the respective compiler and linker
|
|
|
|
command lines.
|
|
|
|
|
|
|
|
:option:`export_symbols` is only useful on Windows. It can contain a list of
|
|
|
|
symbols (functions or variables) to be exported. This option is not needed when
|
|
|
|
building compiled extensions: Distutils will automatically add ``initmodule``
|
|
|
|
to the list of exported symbols.
|
|
|
|
|
2009-02-13 05:15:20 -04:00
|
|
|
The :option:`depends` option is a list of files that the extension depends on
|
|
|
|
(for example header files). The build command will call the compiler on the
|
|
|
|
sources to rebuild extension if any on this files has been modified since the
|
|
|
|
previous build.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
Relationships between Distributions and Packages
|
|
|
|
================================================
|
|
|
|
|
|
|
|
A distribution may relate to packages in three specific ways:
|
|
|
|
|
|
|
|
#. It can require packages or modules.
|
|
|
|
|
|
|
|
#. It can provide packages or modules.
|
|
|
|
|
|
|
|
#. It can obsolete packages or modules.
|
|
|
|
|
|
|
|
These relationships can be specified using keyword arguments to the
|
|
|
|
:func:`distutils.core.setup` function.
|
|
|
|
|
|
|
|
Dependencies on other Python modules and packages can be specified by supplying
|
|
|
|
the *requires* keyword argument to :func:`setup`. The value must be a list of
|
|
|
|
strings. Each string specifies a package that is required, and optionally what
|
|
|
|
versions are sufficient.
|
|
|
|
|
|
|
|
To specify that any version of a module or package is required, the string
|
|
|
|
should consist entirely of the module or package name. Examples include
|
|
|
|
``'mymodule'`` and ``'xml.parsers.expat'``.
|
|
|
|
|
|
|
|
If specific versions are required, a sequence of qualifiers can be supplied in
|
|
|
|
parentheses. Each qualifier may consist of a comparison operator and a version
|
|
|
|
number. The accepted comparison operators are::
|
|
|
|
|
|
|
|
< > ==
|
|
|
|
<= >= !=
|
|
|
|
|
|
|
|
These can be combined by using multiple qualifiers separated by commas (and
|
|
|
|
optional whitespace). In this case, all of the qualifiers must be matched; a
|
|
|
|
logical AND is used to combine the evaluations.
|
|
|
|
|
|
|
|
Let's look at a bunch of examples:
|
|
|
|
|
|
|
|
+-------------------------+----------------------------------------------+
|
|
|
|
| Requires Expression | Explanation |
|
|
|
|
+=========================+==============================================+
|
|
|
|
| ``==1.0`` | Only version ``1.0`` is compatible |
|
|
|
|
+-------------------------+----------------------------------------------+
|
|
|
|
| ``>1.0, !=1.5.1, <2.0`` | Any version after ``1.0`` and before ``2.0`` |
|
|
|
|
| | is compatible, except ``1.5.1`` |
|
|
|
|
+-------------------------+----------------------------------------------+
|
|
|
|
|
|
|
|
Now that we can specify dependencies, we also need to be able to specify what we
|
|
|
|
provide that other distributions can require. This is done using the *provides*
|
|
|
|
keyword argument to :func:`setup`. The value for this keyword is a list of
|
|
|
|
strings, each of which names a Python module or package, and optionally
|
|
|
|
identifies the version. If the version is not specified, it is assumed to match
|
|
|
|
that of the distribution.
|
|
|
|
|
|
|
|
Some examples:
|
|
|
|
|
|
|
|
+---------------------+----------------------------------------------+
|
|
|
|
| Provides Expression | Explanation |
|
|
|
|
+=====================+==============================================+
|
|
|
|
| ``mypkg`` | Provide ``mypkg``, using the distribution |
|
|
|
|
| | version |
|
|
|
|
+---------------------+----------------------------------------------+
|
|
|
|
| ``mypkg (1.1)`` | Provide ``mypkg`` version 1.1, regardless of |
|
|
|
|
| | the distribution version |
|
|
|
|
+---------------------+----------------------------------------------+
|
|
|
|
|
|
|
|
A package can declare that it obsoletes other packages using the *obsoletes*
|
|
|
|
keyword argument. The value for this is similar to that of the *requires*
|
|
|
|
keyword: a list of strings giving module or package specifiers. Each specifier
|
|
|
|
consists of a module or package name optionally followed by one or more version
|
|
|
|
qualifiers. Version qualifiers are given in parentheses after the module or
|
|
|
|
package name.
|
|
|
|
|
|
|
|
The versions identified by the qualifiers are those that are obsoleted by the
|
|
|
|
distribution being described. If no qualifiers are given, all versions of the
|
|
|
|
named module or package are understood to be obsoleted.
|
|
|
|
|
|
|
|
|
|
|
|
Installing Scripts
|
|
|
|
==================
|
|
|
|
|
|
|
|
So far we have been dealing with pure and non-pure Python modules, which are
|
|
|
|
usually not run by themselves but imported by scripts.
|
|
|
|
|
|
|
|
Scripts are files containing Python source code, intended to be started from the
|
|
|
|
command line. Scripts don't require Distutils to do anything very complicated.
|
|
|
|
The only clever feature is that if the first line of the script starts with
|
|
|
|
``#!`` and contains the word "python", the Distutils will adjust the first line
|
|
|
|
to refer to the current interpreter location. By default, it is replaced with
|
|
|
|
the current interpreter location. The :option:`--executable` (or :option:`-e`)
|
|
|
|
option will allow the interpreter path to be explicitly overridden.
|
|
|
|
|
|
|
|
The :option:`scripts` option simply is a list of files to be handled in this
|
|
|
|
way. From the PyXML setup script::
|
|
|
|
|
Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,60505-60506,60508-60509,60523-60524,60532,60543,60545,60547-60548,60552,60554,60556-60559,60561-60562,60569,60571-60572,60574,60576-60583,60585-60586,60589,60591,60594-60595,60597-60598,60600-60601,60606-60612,60615,60617,60619-60621,60623-60625,60627-60629,60631,60633,60635,60647,60650,60652,60654,60656,60658-60659,60664-60666,60668-60670,60672,60676,60678,60680-60683,60685-60686,60688,60690,60692-60694,60697-60700,60705-60706,60708,60711,60714,60720,60724-60730,60732,60736,60742,60744,60746,60748,60750-60751,60753,60756-60757,60759-60761,60763-60764,60766,60769-60770,60774-60784,60787-60789,60793,60796,60799-60809,60812-60813,60815-60821,60823-60826,60828-60829,60831-60834,60836,60838-60839,60846-60849,60852-60854,60856-60859,60861-60870,60874-60875,60880-60881,60886,60888-60890,60892,60894-60898,60900-60931,60933-60958 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r60901 | eric.smith | 2008-02-19 14:21:56 +0100 (Tue, 19 Feb 2008) | 1 line
Added PEP 3101.
........
r60907 | georg.brandl | 2008-02-20 20:12:36 +0100 (Wed, 20 Feb 2008) | 2 lines
Fixes contributed by Ori Avtalion.
........
r60909 | eric.smith | 2008-02-21 00:34:22 +0100 (Thu, 21 Feb 2008) | 1 line
Trim leading zeros from a floating point exponent, per C99. See issue 1600. As far as I know, this only affects Windows. Add float type 'n' to PyOS_ascii_formatd (see PEP 3101 for 'n' description).
........
r60910 | eric.smith | 2008-02-21 00:39:28 +0100 (Thu, 21 Feb 2008) | 1 line
Now that PyOS_ascii_formatd supports the 'n' format, simplify the float formatting code to just call it.
........
r60918 | andrew.kuchling | 2008-02-21 15:23:38 +0100 (Thu, 21 Feb 2008) | 2 lines
Close manifest file.
This change doesn't make any difference to CPython, but is a necessary fix for Jython.
........
r60921 | guido.van.rossum | 2008-02-21 18:46:16 +0100 (Thu, 21 Feb 2008) | 2 lines
Remove news about float repr() -- issue 1580 is still in limbo.
........
r60923 | guido.van.rossum | 2008-02-21 19:18:37 +0100 (Thu, 21 Feb 2008) | 5 lines
Removed uses of dict.has_key() from distutils, and uses of
callable() from copy_reg.py, so the interpreter now starts up
without warnings when '-3' is given. More work like this needs to
be done in the rest of the stdlib.
........
r60924 | thomas.heller | 2008-02-21 19:28:48 +0100 (Thu, 21 Feb 2008) | 4 lines
configure.ac: Remove the configure check for _Bool, it is already done in the
top-level Python configure script.
configure, fficonfig.h.in: regenerated.
........
r60925 | thomas.heller | 2008-02-21 19:52:20 +0100 (Thu, 21 Feb 2008) | 3 lines
Replace 'has_key()' with 'in'.
Replace 'raise Error, stuff' with 'raise Error(stuff)'.
........
r60927 | raymond.hettinger | 2008-02-21 20:24:53 +0100 (Thu, 21 Feb 2008) | 1 line
Update more instances of has_key().
........
r60928 | guido.van.rossum | 2008-02-21 20:46:35 +0100 (Thu, 21 Feb 2008) | 3 lines
Fix a few typos and layout glitches (more work is needed).
Move 2.5 news to Misc/HISTORY.
........
r60936 | georg.brandl | 2008-02-21 21:33:38 +0100 (Thu, 21 Feb 2008) | 2 lines
#2079: typo in userdict docs.
........
r60938 | georg.brandl | 2008-02-21 21:38:13 +0100 (Thu, 21 Feb 2008) | 2 lines
Part of #2154: minimal syntax fixes in doc example snippets.
........
r60942 | raymond.hettinger | 2008-02-22 04:16:42 +0100 (Fri, 22 Feb 2008) | 1 line
First draft for itertools.product(). Docs and other updates forthcoming.
........
r60955 | nick.coghlan | 2008-02-22 11:54:06 +0100 (Fri, 22 Feb 2008) | 1 line
Try to make command line error messages from runpy easier to understand (and suppress traceback cruft from the implicitly invoked runpy machinery)
........
r60956 | georg.brandl | 2008-02-22 13:31:45 +0100 (Fri, 22 Feb 2008) | 2 lines
A lot more typo fixes by Ori Avtalion.
........
r60957 | georg.brandl | 2008-02-22 13:56:34 +0100 (Fri, 22 Feb 2008) | 2 lines
Don't reference pyshell.
........
r60958 | georg.brandl | 2008-02-22 13:57:05 +0100 (Fri, 22 Feb 2008) | 2 lines
Another fix.
........
2008-02-22 12:37:40 -04:00
|
|
|
setup(...,
|
2007-08-15 11:28:22 -03:00
|
|
|
scripts=['scripts/xmlproc_parse', 'scripts/xmlproc_val']
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
Installing Package Data
|
|
|
|
=======================
|
|
|
|
|
|
|
|
Often, additional files need to be installed into a package. These files are
|
|
|
|
often data that's closely related to the package's implementation, or text files
|
|
|
|
containing documentation that might be of interest to programmers using the
|
|
|
|
package. These files are called :dfn:`package data`.
|
|
|
|
|
|
|
|
Package data can be added to packages using the ``package_data`` keyword
|
|
|
|
argument to the :func:`setup` function. The value must be a mapping from
|
|
|
|
package name to a list of relative path names that should be copied into the
|
|
|
|
package. The paths are interpreted as relative to the directory containing the
|
|
|
|
package (information from the ``package_dir`` mapping is used if appropriate);
|
|
|
|
that is, the files are expected to be part of the package in the source
|
|
|
|
directories. They may contain glob patterns as well.
|
|
|
|
|
|
|
|
The path names may contain directory portions; any necessary directories will be
|
|
|
|
created in the installation.
|
|
|
|
|
|
|
|
For example, if a package should contain a subdirectory with several data files,
|
|
|
|
the files can be arranged like this in the source tree::
|
|
|
|
|
|
|
|
setup.py
|
|
|
|
src/
|
|
|
|
mypkg/
|
|
|
|
__init__.py
|
|
|
|
module.py
|
|
|
|
data/
|
|
|
|
tables.dat
|
|
|
|
spoons.dat
|
|
|
|
forks.dat
|
|
|
|
|
|
|
|
The corresponding call to :func:`setup` might be::
|
|
|
|
|
|
|
|
setup(...,
|
|
|
|
packages=['mypkg'],
|
|
|
|
package_dir={'mypkg': 'src/mypkg'},
|
|
|
|
package_data={'mypkg': ['data/*.dat']},
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
Installing Additional Files
|
|
|
|
===========================
|
|
|
|
|
|
|
|
The :option:`data_files` option can be used to specify additional files needed
|
|
|
|
by the module distribution: configuration files, message catalogs, data files,
|
|
|
|
anything which doesn't fit in the previous categories.
|
|
|
|
|
|
|
|
:option:`data_files` specifies a sequence of (*directory*, *files*) pairs in the
|
|
|
|
following way::
|
|
|
|
|
Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,60505-60506,60508-60509,60523-60524,60532,60543,60545,60547-60548,60552,60554,60556-60559,60561-60562,60569,60571-60572,60574,60576-60583,60585-60586,60589,60591,60594-60595,60597-60598,60600-60601,60606-60612,60615,60617,60619-60621,60623-60625,60627-60629,60631,60633,60635,60647,60650,60652,60654,60656,60658-60659,60664-60666,60668-60670,60672,60676,60678,60680-60683,60685-60686,60688,60690,60692-60694,60697-60700,60705-60706,60708,60711,60714,60720,60724-60730,60732,60736,60742,60744,60746,60748,60750-60751,60753,60756-60757,60759-60761,60763-60764,60766,60769-60770,60774-60784,60787-60789,60793,60796,60799-60809,60812-60813,60815-60821,60823-60826,60828-60829,60831-60834,60836,60838-60839,60846-60849,60852-60854,60856-60859,60861-60870,60874-60875,60880-60881,60886,60888-60890,60892,60894-60898,60900-60931,60933-60958 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r60901 | eric.smith | 2008-02-19 14:21:56 +0100 (Tue, 19 Feb 2008) | 1 line
Added PEP 3101.
........
r60907 | georg.brandl | 2008-02-20 20:12:36 +0100 (Wed, 20 Feb 2008) | 2 lines
Fixes contributed by Ori Avtalion.
........
r60909 | eric.smith | 2008-02-21 00:34:22 +0100 (Thu, 21 Feb 2008) | 1 line
Trim leading zeros from a floating point exponent, per C99. See issue 1600. As far as I know, this only affects Windows. Add float type 'n' to PyOS_ascii_formatd (see PEP 3101 for 'n' description).
........
r60910 | eric.smith | 2008-02-21 00:39:28 +0100 (Thu, 21 Feb 2008) | 1 line
Now that PyOS_ascii_formatd supports the 'n' format, simplify the float formatting code to just call it.
........
r60918 | andrew.kuchling | 2008-02-21 15:23:38 +0100 (Thu, 21 Feb 2008) | 2 lines
Close manifest file.
This change doesn't make any difference to CPython, but is a necessary fix for Jython.
........
r60921 | guido.van.rossum | 2008-02-21 18:46:16 +0100 (Thu, 21 Feb 2008) | 2 lines
Remove news about float repr() -- issue 1580 is still in limbo.
........
r60923 | guido.van.rossum | 2008-02-21 19:18:37 +0100 (Thu, 21 Feb 2008) | 5 lines
Removed uses of dict.has_key() from distutils, and uses of
callable() from copy_reg.py, so the interpreter now starts up
without warnings when '-3' is given. More work like this needs to
be done in the rest of the stdlib.
........
r60924 | thomas.heller | 2008-02-21 19:28:48 +0100 (Thu, 21 Feb 2008) | 4 lines
configure.ac: Remove the configure check for _Bool, it is already done in the
top-level Python configure script.
configure, fficonfig.h.in: regenerated.
........
r60925 | thomas.heller | 2008-02-21 19:52:20 +0100 (Thu, 21 Feb 2008) | 3 lines
Replace 'has_key()' with 'in'.
Replace 'raise Error, stuff' with 'raise Error(stuff)'.
........
r60927 | raymond.hettinger | 2008-02-21 20:24:53 +0100 (Thu, 21 Feb 2008) | 1 line
Update more instances of has_key().
........
r60928 | guido.van.rossum | 2008-02-21 20:46:35 +0100 (Thu, 21 Feb 2008) | 3 lines
Fix a few typos and layout glitches (more work is needed).
Move 2.5 news to Misc/HISTORY.
........
r60936 | georg.brandl | 2008-02-21 21:33:38 +0100 (Thu, 21 Feb 2008) | 2 lines
#2079: typo in userdict docs.
........
r60938 | georg.brandl | 2008-02-21 21:38:13 +0100 (Thu, 21 Feb 2008) | 2 lines
Part of #2154: minimal syntax fixes in doc example snippets.
........
r60942 | raymond.hettinger | 2008-02-22 04:16:42 +0100 (Fri, 22 Feb 2008) | 1 line
First draft for itertools.product(). Docs and other updates forthcoming.
........
r60955 | nick.coghlan | 2008-02-22 11:54:06 +0100 (Fri, 22 Feb 2008) | 1 line
Try to make command line error messages from runpy easier to understand (and suppress traceback cruft from the implicitly invoked runpy machinery)
........
r60956 | georg.brandl | 2008-02-22 13:31:45 +0100 (Fri, 22 Feb 2008) | 2 lines
A lot more typo fixes by Ori Avtalion.
........
r60957 | georg.brandl | 2008-02-22 13:56:34 +0100 (Fri, 22 Feb 2008) | 2 lines
Don't reference pyshell.
........
r60958 | georg.brandl | 2008-02-22 13:57:05 +0100 (Fri, 22 Feb 2008) | 2 lines
Another fix.
........
2008-02-22 12:37:40 -04:00
|
|
|
setup(...,
|
2007-08-15 11:28:22 -03:00
|
|
|
data_files=[('bitmaps', ['bm/b1.gif', 'bm/b2.gif']),
|
|
|
|
('config', ['cfg/data.cfg']),
|
|
|
|
('/etc/init.d', ['init-script'])]
|
|
|
|
)
|
|
|
|
|
|
|
|
Note that you can specify the directory names where the data files will be
|
|
|
|
installed, but you cannot rename the data files themselves.
|
|
|
|
|
|
|
|
Each (*directory*, *files*) pair in the sequence specifies the installation
|
|
|
|
directory and the files to install there. If *directory* is a relative path, it
|
|
|
|
is interpreted relative to the installation prefix (Python's ``sys.prefix`` for
|
|
|
|
pure-Python packages, ``sys.exec_prefix`` for packages that contain extension
|
|
|
|
modules). Each file name in *files* is interpreted relative to the
|
|
|
|
:file:`setup.py` script at the top of the package source distribution. No
|
|
|
|
directory information from *files* is used to determine the final location of
|
|
|
|
the installed file; only the name of the file is used.
|
|
|
|
|
|
|
|
You can specify the :option:`data_files` options as a simple sequence of files
|
|
|
|
without specifying a target directory, but this is not recommended, and the
|
|
|
|
:command:`install` command will print a warning in this case. To install data
|
|
|
|
files directly in the target directory, an empty string should be given as the
|
|
|
|
directory.
|
|
|
|
|
|
|
|
|
|
|
|
.. _meta-data:
|
|
|
|
|
|
|
|
Additional meta-data
|
|
|
|
====================
|
|
|
|
|
|
|
|
The setup script may include additional meta-data beyond the name and version.
|
|
|
|
This information includes:
|
|
|
|
|
|
|
|
+----------------------+---------------------------+-----------------+--------+
|
|
|
|
| Meta-Data | Description | Value | Notes |
|
|
|
|
+======================+===========================+=================+========+
|
|
|
|
| ``name`` | name of the package | short string | \(1) |
|
|
|
|
+----------------------+---------------------------+-----------------+--------+
|
|
|
|
| ``version`` | version of this release | short string | (1)(2) |
|
|
|
|
+----------------------+---------------------------+-----------------+--------+
|
|
|
|
| ``author`` | package author's name | short string | \(3) |
|
|
|
|
+----------------------+---------------------------+-----------------+--------+
|
|
|
|
| ``author_email`` | email address of the | email address | \(3) |
|
|
|
|
| | package author | | |
|
|
|
|
+----------------------+---------------------------+-----------------+--------+
|
|
|
|
| ``maintainer`` | package maintainer's name | short string | \(3) |
|
|
|
|
+----------------------+---------------------------+-----------------+--------+
|
|
|
|
| ``maintainer_email`` | email address of the | email address | \(3) |
|
|
|
|
| | package maintainer | | |
|
|
|
|
+----------------------+---------------------------+-----------------+--------+
|
|
|
|
| ``url`` | home page for the package | URL | \(1) |
|
|
|
|
+----------------------+---------------------------+-----------------+--------+
|
|
|
|
| ``description`` | short, summary | short string | |
|
|
|
|
| | description of the | | |
|
|
|
|
| | package | | |
|
|
|
|
+----------------------+---------------------------+-----------------+--------+
|
|
|
|
| ``long_description`` | longer description of the | long string | |
|
|
|
|
| | package | | |
|
|
|
|
+----------------------+---------------------------+-----------------+--------+
|
|
|
|
| ``download_url`` | location where the | URL | \(4) |
|
|
|
|
| | package may be downloaded | | |
|
|
|
|
+----------------------+---------------------------+-----------------+--------+
|
|
|
|
| ``classifiers`` | a list of classifiers | list of strings | \(4) |
|
|
|
|
+----------------------+---------------------------+-----------------+--------+
|
Merged revisions 67654,67676-67677,67681,67692,67725,67761,67784-67785,67787-67788,67802,67848-67850,67862-67864,67880,67882 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r67654 | georg.brandl | 2008-12-07 16:42:09 -0600 (Sun, 07 Dec 2008) | 2 lines
#4457: rewrite __import__() documentation.
........
r67676 | benjamin.peterson | 2008-12-08 20:03:03 -0600 (Mon, 08 Dec 2008) | 1 line
specify how things are copied
........
r67677 | benjamin.peterson | 2008-12-08 20:05:11 -0600 (Mon, 08 Dec 2008) | 1 line
revert unrelated change to installer script
........
r67681 | jeremy.hylton | 2008-12-09 15:03:10 -0600 (Tue, 09 Dec 2008) | 2 lines
Add simple unittests for Request
........
r67692 | amaury.forgeotdarc | 2008-12-10 18:03:42 -0600 (Wed, 10 Dec 2008) | 2 lines
#1030250: correctly pass the dry_run option to the mkpath() function.
........
r67725 | benjamin.peterson | 2008-12-12 22:02:20 -0600 (Fri, 12 Dec 2008) | 1 line
fix incorrect example
........
r67761 | benjamin.peterson | 2008-12-14 11:26:04 -0600 (Sun, 14 Dec 2008) | 1 line
fix missing bracket
........
r67784 | georg.brandl | 2008-12-15 02:33:58 -0600 (Mon, 15 Dec 2008) | 2 lines
#4446: document "platforms" argument for setup().
........
r67785 | georg.brandl | 2008-12-15 02:36:11 -0600 (Mon, 15 Dec 2008) | 2 lines
#4611: fix typo.
........
r67787 | georg.brandl | 2008-12-15 02:58:59 -0600 (Mon, 15 Dec 2008) | 2 lines
#4578: fix has_key() usage in compiler package.
........
r67788 | georg.brandl | 2008-12-15 03:07:39 -0600 (Mon, 15 Dec 2008) | 2 lines
#4568: remove limitation in varargs callback example.
........
r67802 | amaury.forgeotdarc | 2008-12-15 16:29:14 -0600 (Mon, 15 Dec 2008) | 4 lines
#3632: the "pyo" macro from gdbinit can now run when the GIL is released.
Patch by haypo.
........
r67848 | benjamin.peterson | 2008-12-18 20:28:56 -0600 (Thu, 18 Dec 2008) | 1 line
fix typo
........
r67849 | benjamin.peterson | 2008-12-18 20:31:35 -0600 (Thu, 18 Dec 2008) | 1 line
_call_method -> _callmethod and _get_value to _getvalue
........
r67850 | raymond.hettinger | 2008-12-19 03:06:07 -0600 (Fri, 19 Dec 2008) | 9 lines
Fix-up and clean-up docs for int.bit_length().
* Replace dramatic footnote with in-line comment about possible round-off errors in logarithms of large numbers.
* Add comments to the pure python code equivalent.
* replace floor() with int() in the mathematical equivalent so the type is correct (should be an int, not a float).
* add abs() to the mathematical equivalent so that it matches the previous line that it is supposed to be equivalent to.
* make one combined example with a negative input.
........
r67862 | benjamin.peterson | 2008-12-19 20:48:02 -0600 (Fri, 19 Dec 2008) | 1 line
copy sentence from docstring
........
r67863 | benjamin.peterson | 2008-12-19 20:51:26 -0600 (Fri, 19 Dec 2008) | 1 line
add headings
........
r67864 | benjamin.peterson | 2008-12-19 20:57:19 -0600 (Fri, 19 Dec 2008) | 1 line
beef up docstring
........
r67880 | benjamin.peterson | 2008-12-20 16:49:24 -0600 (Sat, 20 Dec 2008) | 1 line
remove redundant sentence
........
r67882 | benjamin.peterson | 2008-12-20 16:59:49 -0600 (Sat, 20 Dec 2008) | 1 line
add some recent releases to the list
........
2008-12-20 20:06:59 -04:00
|
|
|
| ``platforms`` | a list of platforms | list of strings | |
|
|
|
|
+----------------------+---------------------------+-----------------+--------+
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
Notes:
|
|
|
|
|
|
|
|
(1)
|
|
|
|
These fields are required.
|
|
|
|
|
|
|
|
(2)
|
|
|
|
It is recommended that versions take the form *major.minor[.patch[.sub]]*.
|
|
|
|
|
|
|
|
(3)
|
|
|
|
Either the author or the maintainer must be identified.
|
|
|
|
|
|
|
|
(4)
|
|
|
|
These fields should not be used if your package is to be compatible with Python
|
|
|
|
versions prior to 2.2.3 or 2.3. The list is available from the `PyPI website
|
Merged revisions 61239-61249,61252-61257,61260-61264,61269-61275,61278-61279,61285-61286,61288-61290,61298,61303-61305,61312-61314,61317,61329,61332,61344,61350-61351,61363-61376,61378-61379,61382-61383,61387-61388,61392,61395-61396,61402-61403 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r61239 | andrew.kuchling | 2008-03-05 01:44:41 +0100 (Wed, 05 Mar 2008) | 1 line
Add more items; add fragmentary notes
........
r61240 | amaury.forgeotdarc | 2008-03-05 02:50:33 +0100 (Wed, 05 Mar 2008) | 13 lines
Issue#2238: some syntax errors from *args or **kwargs expressions
would give bogus error messages, because of untested exceptions::
>>> f(**g(1=2))
XXX undetected error
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: 'int' object is not iterable
instead of the expected SyntaxError: keyword can't be an expression
Will backport.
........
r61241 | neal.norwitz | 2008-03-05 06:10:48 +0100 (Wed, 05 Mar 2008) | 3 lines
Remove the files/dirs after closing the DB so the tests work on Windows.
Patch from Trent Nelson. Also simplified removing a file by using test_support.
........
r61242 | neal.norwitz | 2008-03-05 06:14:18 +0100 (Wed, 05 Mar 2008) | 3 lines
Get this test to pass even when there is no sound card in the system.
Patch from Trent Nelson. (I can't test this.)
........
r61243 | neal.norwitz | 2008-03-05 06:20:44 +0100 (Wed, 05 Mar 2008) | 3 lines
Catch OSError when trying to remove a file in case removal fails. This
should prevent a failure in tearDown masking any real test failure.
........
r61244 | neal.norwitz | 2008-03-05 06:38:06 +0100 (Wed, 05 Mar 2008) | 5 lines
Make the timeout longer to give slow machines a chance to pass the test
before timing out. This doesn't change the duration of the test under
normal circumstances. This is targetted at fixing the spurious failures
on the FreeBSD buildbot primarily.
........
r61245 | neal.norwitz | 2008-03-05 06:49:03 +0100 (Wed, 05 Mar 2008) | 1 line
Tabs -> spaces
........
r61246 | neal.norwitz | 2008-03-05 06:50:20 +0100 (Wed, 05 Mar 2008) | 1 line
Use -u urlfetch to run more tests
........
r61247 | neal.norwitz | 2008-03-05 06:51:20 +0100 (Wed, 05 Mar 2008) | 1 line
test_smtplib sometimes reports leaks too, suppress it
........
r61248 | jeffrey.yasskin | 2008-03-05 07:19:56 +0100 (Wed, 05 Mar 2008) | 5 lines
Fix test_socketserver on Windows after r61099 added several signal.alarm()
calls (which don't exist on non-Unix platforms).
Thanks to Trent Nelson for the report and patch.
........
r61249 | georg.brandl | 2008-03-05 08:10:35 +0100 (Wed, 05 Mar 2008) | 2 lines
Fix some rst.
........
r61252 | thomas.heller | 2008-03-05 15:53:39 +0100 (Wed, 05 Mar 2008) | 2 lines
News entry for yesterdays commit.
........
r61253 | thomas.heller | 2008-03-05 16:34:29 +0100 (Wed, 05 Mar 2008) | 3 lines
Issue 1872: Changed the struct module typecode from 't' to '?', for
compatibility with PEP3118.
........
r61254 | skip.montanaro | 2008-03-05 17:41:09 +0100 (Wed, 05 Mar 2008) | 4 lines
Elaborate on the role of the altinstall target when installing multiple
versions.
........
r61255 | georg.brandl | 2008-03-05 20:31:44 +0100 (Wed, 05 Mar 2008) | 2 lines
#2239: PYTHONPATH delimiter is os.pathsep.
........
r61256 | raymond.hettinger | 2008-03-05 21:59:58 +0100 (Wed, 05 Mar 2008) | 1 line
C implementation of itertools.permutations().
........
r61257 | raymond.hettinger | 2008-03-05 22:04:32 +0100 (Wed, 05 Mar 2008) | 1 line
Small code cleanup.
........
r61260 | martin.v.loewis | 2008-03-05 23:24:31 +0100 (Wed, 05 Mar 2008) | 2 lines
cd PCbuild only after deleting all pyc files.
........
r61261 | raymond.hettinger | 2008-03-06 02:15:52 +0100 (Thu, 06 Mar 2008) | 1 line
Add examples.
........
r61262 | andrew.kuchling | 2008-03-06 02:36:27 +0100 (Thu, 06 Mar 2008) | 1 line
Add two items
........
r61263 | georg.brandl | 2008-03-06 07:47:18 +0100 (Thu, 06 Mar 2008) | 2 lines
#1725737: ignore other VC directories other than CVS and SVN's too.
........
r61264 | martin.v.loewis | 2008-03-06 07:55:22 +0100 (Thu, 06 Mar 2008) | 4 lines
Patch #2232: os.tmpfile might fail on Windows if the user has no
permission to create files in the root directory.
Will backport to 2.5.
........
r61269 | georg.brandl | 2008-03-06 08:19:15 +0100 (Thu, 06 Mar 2008) | 2 lines
Expand on re.split behavior with captured expressions.
........
r61270 | georg.brandl | 2008-03-06 08:22:09 +0100 (Thu, 06 Mar 2008) | 2 lines
Little clarification of assignments.
........
r61271 | georg.brandl | 2008-03-06 08:31:34 +0100 (Thu, 06 Mar 2008) | 2 lines
Add isinstance/issubclass to tutorial.
........
r61272 | georg.brandl | 2008-03-06 08:34:52 +0100 (Thu, 06 Mar 2008) | 2 lines
Add missing NEWS entry for r61263.
........
r61273 | georg.brandl | 2008-03-06 08:41:16 +0100 (Thu, 06 Mar 2008) | 2 lines
#2225: return nonzero status code from py_compile if not all files could be compiled.
........
r61274 | georg.brandl | 2008-03-06 08:43:02 +0100 (Thu, 06 Mar 2008) | 2 lines
#2220: handle matching failure more gracefully.
........
r61275 | georg.brandl | 2008-03-06 08:45:52 +0100 (Thu, 06 Mar 2008) | 2 lines
Bug #2220: handle rlcompleter attribute match failure more gracefully.
........
r61278 | martin.v.loewis | 2008-03-06 14:49:47 +0100 (Thu, 06 Mar 2008) | 1 line
Rely on x64 platform configuration when building _bsddb on AMD64.
........
r61279 | martin.v.loewis | 2008-03-06 14:50:28 +0100 (Thu, 06 Mar 2008) | 1 line
Update db-4.4.20 build procedure.
........
r61285 | raymond.hettinger | 2008-03-06 21:52:01 +0100 (Thu, 06 Mar 2008) | 1 line
More tests.
........
r61286 | raymond.hettinger | 2008-03-06 23:51:36 +0100 (Thu, 06 Mar 2008) | 1 line
Issue 2246: itertools grouper object did not participate in GC (should be backported).
........
r61288 | raymond.hettinger | 2008-03-07 02:33:20 +0100 (Fri, 07 Mar 2008) | 1 line
Tweak recipes and tests
........
r61289 | jeffrey.yasskin | 2008-03-07 07:22:15 +0100 (Fri, 07 Mar 2008) | 5 lines
Progress on issue #1193577 by adding a polling .shutdown() method to
SocketServers. The core of the patch was written by Pedro Werneck, but any bugs
are mine. I've also rearranged the code for timeouts in order to avoid
interfering with the shutdown poll.
........
r61290 | nick.coghlan | 2008-03-07 15:13:28 +0100 (Fri, 07 Mar 2008) | 1 line
Speed up with statements by storing the __exit__ method on the stack instead of in a temp variable (bumps the magic number for pyc files)
........
r61298 | andrew.kuchling | 2008-03-07 22:09:23 +0100 (Fri, 07 Mar 2008) | 1 line
Grammar fix
........
r61303 | georg.brandl | 2008-03-08 10:54:06 +0100 (Sat, 08 Mar 2008) | 2 lines
#2253: fix continue vs. finally docs.
........
r61304 | marc-andre.lemburg | 2008-03-08 11:01:43 +0100 (Sat, 08 Mar 2008) | 3 lines
Add new name for Mandrake: Mandriva.
........
r61305 | georg.brandl | 2008-03-08 11:05:24 +0100 (Sat, 08 Mar 2008) | 2 lines
#1533486: fix types in refcount intro.
........
r61312 | facundo.batista | 2008-03-08 17:50:27 +0100 (Sat, 08 Mar 2008) | 5 lines
Issue 1106316. post_mortem()'s parameter, traceback, is now
optional: it defaults to the traceback of the exception that is currently
being handled.
........
r61313 | jeffrey.yasskin | 2008-03-08 19:26:54 +0100 (Sat, 08 Mar 2008) | 2 lines
Add tests for with and finally performance to pybench.
........
r61314 | jeffrey.yasskin | 2008-03-08 21:08:21 +0100 (Sat, 08 Mar 2008) | 2 lines
Fix pybench for pythons < 2.6, tested back to 2.3.
........
r61317 | jeffrey.yasskin | 2008-03-08 22:35:15 +0100 (Sat, 08 Mar 2008) | 3 lines
Well that was dumb. platform.python_implementation returns a function, not a
string.
........
r61329 | georg.brandl | 2008-03-09 16:11:39 +0100 (Sun, 09 Mar 2008) | 2 lines
#2249: document assertTrue and assertFalse.
........
r61332 | neal.norwitz | 2008-03-09 20:03:42 +0100 (Sun, 09 Mar 2008) | 4 lines
Introduce a lock to fix a race condition which caused an exception in the test.
Some buildbots were consistently failing (e.g., amd64).
Also remove a couple of semi-colons.
........
r61344 | raymond.hettinger | 2008-03-11 01:19:07 +0100 (Tue, 11 Mar 2008) | 1 line
Add recipe to docs.
........
r61350 | guido.van.rossum | 2008-03-11 22:18:06 +0100 (Tue, 11 Mar 2008) | 3 lines
Fix the overflows in expandtabs(). "This time for sure!"
(Exploit at request.)
........
r61351 | raymond.hettinger | 2008-03-11 22:37:46 +0100 (Tue, 11 Mar 2008) | 1 line
Improve docs for itemgetter(). Show that it works with slices.
........
r61363 | georg.brandl | 2008-03-13 08:15:56 +0100 (Thu, 13 Mar 2008) | 2 lines
#2265: fix example.
........
r61364 | georg.brandl | 2008-03-13 08:17:14 +0100 (Thu, 13 Mar 2008) | 2 lines
#2270: fix typo.
........
r61365 | georg.brandl | 2008-03-13 08:21:41 +0100 (Thu, 13 Mar 2008) | 2 lines
#1720705: add docs about import/threading interaction, wording by Nick.
........
r61366 | andrew.kuchling | 2008-03-13 12:07:35 +0100 (Thu, 13 Mar 2008) | 1 line
Add class decorators
........
r61367 | raymond.hettinger | 2008-03-13 17:43:17 +0100 (Thu, 13 Mar 2008) | 1 line
Add 2-to-3 support for the itertools moved to builtins or renamed.
........
r61368 | raymond.hettinger | 2008-03-13 17:43:59 +0100 (Thu, 13 Mar 2008) | 1 line
Consistent tense.
........
r61369 | raymond.hettinger | 2008-03-13 20:03:51 +0100 (Thu, 13 Mar 2008) | 1 line
Issue 2274: Add heapq.heappushpop().
........
r61370 | raymond.hettinger | 2008-03-13 20:33:34 +0100 (Thu, 13 Mar 2008) | 1 line
Simplify the nlargest() code using heappushpop().
........
r61371 | brett.cannon | 2008-03-13 21:27:00 +0100 (Thu, 13 Mar 2008) | 4 lines
Move test_thread over to unittest. Commits GHOP 237.
Thanks Benjamin Peterson for the patch.
........
r61372 | brett.cannon | 2008-03-13 21:33:10 +0100 (Thu, 13 Mar 2008) | 4 lines
Move test_tokenize to doctest.
Done as GHOP 238 by Josip Dzolonga.
........
r61373 | brett.cannon | 2008-03-13 21:47:41 +0100 (Thu, 13 Mar 2008) | 4 lines
Convert test_contains, test_crypt, and test_select to unittest.
Patch from GHOP 294 by David Marek.
........
r61374 | brett.cannon | 2008-03-13 22:02:16 +0100 (Thu, 13 Mar 2008) | 4 lines
Move test_gdbm to use unittest.
Closes issue #1960. Thanks Giampaolo Rodola.
........
r61375 | brett.cannon | 2008-03-13 22:09:28 +0100 (Thu, 13 Mar 2008) | 4 lines
Convert test_fcntl to unittest.
Closes issue #2055. Thanks Giampaolo Rodola.
........
r61376 | raymond.hettinger | 2008-03-14 06:03:44 +0100 (Fri, 14 Mar 2008) | 1 line
Leave heapreplace() unchanged.
........
r61378 | martin.v.loewis | 2008-03-14 14:56:09 +0100 (Fri, 14 Mar 2008) | 2 lines
Patch #2284: add -x64 option to rt.bat.
........
r61379 | martin.v.loewis | 2008-03-14 14:57:59 +0100 (Fri, 14 Mar 2008) | 2 lines
Use -x64 flag.
........
r61382 | brett.cannon | 2008-03-14 15:03:10 +0100 (Fri, 14 Mar 2008) | 2 lines
Remove a bad test.
........
r61383 | mark.dickinson | 2008-03-14 15:23:37 +0100 (Fri, 14 Mar 2008) | 9 lines
Issue 705836: Fix struct.pack(">f", 1e40) to behave consistently
across platforms: it should now raise OverflowError on all
platforms. (Previously it raised OverflowError only on
non IEEE 754 platforms.)
Also fix the (already existing) test for this behaviour
so that it actually raises TestFailed instead of just
referencing it.
........
r61387 | thomas.heller | 2008-03-14 22:06:21 +0100 (Fri, 14 Mar 2008) | 1 line
Remove unneeded initializer.
........
r61388 | martin.v.loewis | 2008-03-14 22:19:28 +0100 (Fri, 14 Mar 2008) | 2 lines
Run debug version, cd to PCbuild.
........
r61392 | georg.brandl | 2008-03-15 00:10:34 +0100 (Sat, 15 Mar 2008) | 2 lines
Remove obsolete paragraph. #2288.
........
r61395 | georg.brandl | 2008-03-15 01:20:19 +0100 (Sat, 15 Mar 2008) | 2 lines
Fix lots of broken links in the docs, found by Sphinx' external link checker.
........
r61396 | skip.montanaro | 2008-03-15 03:32:49 +0100 (Sat, 15 Mar 2008) | 1 line
note that fork and forkpty raise OSError on failure
........
r61402 | skip.montanaro | 2008-03-15 17:04:45 +0100 (Sat, 15 Mar 2008) | 1 line
add %f format to datetime - issue 1158
........
r61403 | skip.montanaro | 2008-03-15 17:07:11 +0100 (Sat, 15 Mar 2008) | 2 lines
.
........
2008-03-15 21:07:10 -03:00
|
|
|
<http://pypi.python.org/pypi>`_.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
'short string'
|
|
|
|
A single line of text, not more than 200 characters.
|
|
|
|
|
|
|
|
'long string'
|
|
|
|
Multiple lines of plain text in reStructuredText format (see
|
|
|
|
http://docutils.sf.net/).
|
|
|
|
|
|
|
|
'list of strings'
|
|
|
|
See below.
|
|
|
|
|
|
|
|
Encoding the version information is an art in itself. Python packages generally
|
|
|
|
adhere to the version format *major.minor[.patch][sub]*. The major number is 0
|
|
|
|
for initial, experimental releases of software. It is incremented for releases
|
|
|
|
that represent major milestones in a package. The minor number is incremented
|
|
|
|
when important new features are added to the package. The patch number
|
|
|
|
increments when bug-fix releases are made. Additional trailing version
|
|
|
|
information is sometimes used to indicate sub-releases. These are
|
|
|
|
"a1,a2,...,aN" (for alpha releases, where functionality and API may change),
|
|
|
|
"b1,b2,...,bN" (for beta releases, which only fix bugs) and "pr1,pr2,...,prN"
|
|
|
|
(for final pre-release release testing). Some examples:
|
|
|
|
|
|
|
|
0.1.0
|
|
|
|
the first, experimental release of a package
|
|
|
|
|
|
|
|
1.0.1a2
|
|
|
|
the second alpha release of the first patch version of 1.0
|
|
|
|
|
|
|
|
:option:`classifiers` are specified in a python list::
|
|
|
|
|
Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,60505-60506,60508-60509,60523-60524,60532,60543,60545,60547-60548,60552,60554,60556-60559,60561-60562,60569,60571-60572,60574,60576-60583,60585-60586,60589,60591,60594-60595,60597-60598,60600-60601,60606-60612,60615,60617,60619-60621,60623-60625,60627-60629,60631,60633,60635,60647,60650,60652,60654,60656,60658-60659,60664-60666,60668-60670,60672,60676,60678,60680-60683,60685-60686,60688,60690,60692-60694,60697-60700,60705-60706,60708,60711,60714,60720,60724-60730,60732,60736,60742,60744,60746,60748,60750-60751,60753,60756-60757,60759-60761,60763-60764,60766,60769-60770,60774-60784,60787-60789,60793,60796,60799-60809,60812-60813,60815-60821,60823-60826,60828-60829,60831-60834,60836,60838-60839,60846-60849,60852-60854,60856-60859,60861-60870,60874-60875,60880-60881,60886,60888-60890,60892,60894-60898,60900-60931,60933-60958 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r60901 | eric.smith | 2008-02-19 14:21:56 +0100 (Tue, 19 Feb 2008) | 1 line
Added PEP 3101.
........
r60907 | georg.brandl | 2008-02-20 20:12:36 +0100 (Wed, 20 Feb 2008) | 2 lines
Fixes contributed by Ori Avtalion.
........
r60909 | eric.smith | 2008-02-21 00:34:22 +0100 (Thu, 21 Feb 2008) | 1 line
Trim leading zeros from a floating point exponent, per C99. See issue 1600. As far as I know, this only affects Windows. Add float type 'n' to PyOS_ascii_formatd (see PEP 3101 for 'n' description).
........
r60910 | eric.smith | 2008-02-21 00:39:28 +0100 (Thu, 21 Feb 2008) | 1 line
Now that PyOS_ascii_formatd supports the 'n' format, simplify the float formatting code to just call it.
........
r60918 | andrew.kuchling | 2008-02-21 15:23:38 +0100 (Thu, 21 Feb 2008) | 2 lines
Close manifest file.
This change doesn't make any difference to CPython, but is a necessary fix for Jython.
........
r60921 | guido.van.rossum | 2008-02-21 18:46:16 +0100 (Thu, 21 Feb 2008) | 2 lines
Remove news about float repr() -- issue 1580 is still in limbo.
........
r60923 | guido.van.rossum | 2008-02-21 19:18:37 +0100 (Thu, 21 Feb 2008) | 5 lines
Removed uses of dict.has_key() from distutils, and uses of
callable() from copy_reg.py, so the interpreter now starts up
without warnings when '-3' is given. More work like this needs to
be done in the rest of the stdlib.
........
r60924 | thomas.heller | 2008-02-21 19:28:48 +0100 (Thu, 21 Feb 2008) | 4 lines
configure.ac: Remove the configure check for _Bool, it is already done in the
top-level Python configure script.
configure, fficonfig.h.in: regenerated.
........
r60925 | thomas.heller | 2008-02-21 19:52:20 +0100 (Thu, 21 Feb 2008) | 3 lines
Replace 'has_key()' with 'in'.
Replace 'raise Error, stuff' with 'raise Error(stuff)'.
........
r60927 | raymond.hettinger | 2008-02-21 20:24:53 +0100 (Thu, 21 Feb 2008) | 1 line
Update more instances of has_key().
........
r60928 | guido.van.rossum | 2008-02-21 20:46:35 +0100 (Thu, 21 Feb 2008) | 3 lines
Fix a few typos and layout glitches (more work is needed).
Move 2.5 news to Misc/HISTORY.
........
r60936 | georg.brandl | 2008-02-21 21:33:38 +0100 (Thu, 21 Feb 2008) | 2 lines
#2079: typo in userdict docs.
........
r60938 | georg.brandl | 2008-02-21 21:38:13 +0100 (Thu, 21 Feb 2008) | 2 lines
Part of #2154: minimal syntax fixes in doc example snippets.
........
r60942 | raymond.hettinger | 2008-02-22 04:16:42 +0100 (Fri, 22 Feb 2008) | 1 line
First draft for itertools.product(). Docs and other updates forthcoming.
........
r60955 | nick.coghlan | 2008-02-22 11:54:06 +0100 (Fri, 22 Feb 2008) | 1 line
Try to make command line error messages from runpy easier to understand (and suppress traceback cruft from the implicitly invoked runpy machinery)
........
r60956 | georg.brandl | 2008-02-22 13:31:45 +0100 (Fri, 22 Feb 2008) | 2 lines
A lot more typo fixes by Ori Avtalion.
........
r60957 | georg.brandl | 2008-02-22 13:56:34 +0100 (Fri, 22 Feb 2008) | 2 lines
Don't reference pyshell.
........
r60958 | georg.brandl | 2008-02-22 13:57:05 +0100 (Fri, 22 Feb 2008) | 2 lines
Another fix.
........
2008-02-22 12:37:40 -04:00
|
|
|
setup(...,
|
2007-08-15 11:28:22 -03:00
|
|
|
classifiers=[
|
|
|
|
'Development Status :: 4 - Beta',
|
|
|
|
'Environment :: Console',
|
|
|
|
'Environment :: Web Environment',
|
|
|
|
'Intended Audience :: End Users/Desktop',
|
|
|
|
'Intended Audience :: Developers',
|
|
|
|
'Intended Audience :: System Administrators',
|
|
|
|
'License :: OSI Approved :: Python Software Foundation License',
|
|
|
|
'Operating System :: MacOS :: MacOS X',
|
|
|
|
'Operating System :: Microsoft :: Windows',
|
|
|
|
'Operating System :: POSIX',
|
|
|
|
'Programming Language :: Python',
|
|
|
|
'Topic :: Communications :: Email',
|
|
|
|
'Topic :: Office/Business',
|
|
|
|
'Topic :: Software Development :: Bug Tracking',
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
If you wish to include classifiers in your :file:`setup.py` file and also wish
|
|
|
|
to remain backwards-compatible with Python releases prior to 2.2.3, then you can
|
|
|
|
include the following code fragment in your :file:`setup.py` before the
|
|
|
|
:func:`setup` call. ::
|
|
|
|
|
|
|
|
# patch distutils if it can't cope with the "classifiers" or
|
|
|
|
# "download_url" keywords
|
|
|
|
from sys import version
|
|
|
|
if version < '2.2.3':
|
|
|
|
from distutils.dist import DistributionMetadata
|
|
|
|
DistributionMetadata.classifiers = None
|
|
|
|
DistributionMetadata.download_url = None
|
|
|
|
|
|
|
|
|
|
|
|
Debugging the setup script
|
|
|
|
==========================
|
|
|
|
|
|
|
|
Sometimes things go wrong, and the setup script doesn't do what the developer
|
|
|
|
wants.
|
|
|
|
|
|
|
|
Distutils catches any exceptions when running the setup script, and print a
|
|
|
|
simple error message before the script is terminated. The motivation for this
|
|
|
|
behaviour is to not confuse administrators who don't know much about Python and
|
|
|
|
are trying to install a package. If they get a big long traceback from deep
|
|
|
|
inside the guts of Distutils, they may think the package or the Python
|
|
|
|
installation is broken because they don't read all the way down to the bottom
|
|
|
|
and see that it's a permission problem.
|
|
|
|
|
|
|
|
On the other hand, this doesn't help the developer to find the cause of the
|
|
|
|
failure. For this purpose, the DISTUTILS_DEBUG environment variable can be set
|
|
|
|
to anything except an empty string, and distutils will now print detailed
|
|
|
|
information what it is doing, and prints the full traceback in case an exception
|
|
|
|
occurs.
|
|
|
|
|
|
|
|
|