blob: 40595ba949d0d64c0dfdcfc583b100fb1bc5ffe2 [file] [log] [blame]
Greg Wardd4b84291999-09-21 18:33:09 +00001"""distutils.command
2
3Package containing implementation of all the standard Distutils
4commands. Currently this means:
5
6 build
7 build_py
8 build_ext
9 install
10 install_py
11 install_ext
Greg Ward4c679362000-01-30 18:31:34 +000012 dist
Greg Wardd4b84291999-09-21 18:33:09 +000013
14but this list will undoubtedly grow with time."""
15
Greg Ward3ce77fd2000-03-02 01:49:45 +000016__revision__ = "$Id$"
Greg Ward13ae1c81999-03-22 14:55:25 +000017
18__all__ = ['build',
19 'build_py',
Greg Wardd4b84291999-09-21 18:33:09 +000020 'build_ext',
21 'install',
22 'install_py',
23 'install_ext',
Greg Warde1b1c942000-02-18 00:11:52 +000024 'sdist',
Greg Ward13ae1c81999-03-22 14:55:25 +000025 ]