The 0.5 release happened on 2/15, not on 2/14. :-)
[python/dscho.git] / Lib / distutils / command / __init__.py
blob8659307cbfd569c02c0a934e5066bcea8ec16476
1 """distutils.command
3 Package containing implementation of all the standard Distutils
4 commands. Currently this means:
6 build
7 build_py
8 build_ext
9 install
10 install_py
11 install_ext
12 dist
14 but this list will undoubtedly grow with time."""
16 __rcsid__ = "$Id$"
18 __all__ = ['build',
19 'build_py',
20 'build_ext',
21 'install',
22 'install_py',
23 'install_ext',
24 'dist',