summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/command/__init__.py
blob: 8659307cbfd569c02c0a934e5066bcea8ec16476 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
"""distutils.command

Package containing implementation of all the standard Distutils
commands.  Currently this means:

  build
  build_py
  build_ext
  install
  install_py
  install_ext
  dist

but this list will undoubtedly grow with time."""

__rcsid__ = "$Id$"

__all__ = ['build',
           'build_py',
           'build_ext',
           'install',
           'install_py',
           'install_ext',
           'dist',
          ]