summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/command/__init__.py
blob: 385330b5e0f04ab7246f94b4adb0ea8425cf08bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
"""distutils.command

Package containing implementation of all the standard Distutils
commands."""

__revision__ = "$Id$"

__all__ = ['build',
           'build_py',
           'build_ext',
           'build_clib',
           'install',
           'install_lib',
           'clean',
           'sdist',
           'bdist',
           'bdist_dumb',
          ]