]> git.saurik.com Git - wxWidgets.git/blame - wxPython/distutils/command/__init__.py
added precomp-headers-exclude (DSP files only so far) and fixed dependencies for...
[wxWidgets.git] / wxPython / distutils / command / __init__.py
CommitLineData
1e4a197e
RD
1"""distutils.command
2
3Package containing implementation of all the standard Distutils
4commands."""
5
6# This module should be kept compatible with Python 1.5.2.
7
8__revision__ = "$Id$"
9
10__all__ = ['build',
11 'build_py',
12 'build_ext',
13 'build_clib',
14 'build_scripts',
15 'clean',
16 'install',
17 'install_lib',
18 'install_headers',
19 'install_scripts',
20 'install_data',
21 'sdist',
22 'bdist',
23 'bdist_dumb',
24 'bdist_rpm',
25 'bdist_wininst',
26 # These two are reserved for future use:
27 #'bdist_sdux',
28 #'bdist_pkgtool',
29 # Note:
30 # bdist_packager is not included because it only provides
31 # an abstract base class
32 ]