mirror of
https://github.com/python/cpython.git
synced 2026-01-31 11:42:19 +00:00
adds the 'install_data' and 'install_scripts' commands; these two are trivial thanks to the 'install_misc' base class in cmd.py. (Minor tweaks and commentary by me; the code is untested so far.)
20 lines
417 B
Python
20 lines
417 B
Python
"""distutils.command
|
|
|
|
Package containing implementation of all the standard Distutils
|
|
commands."""
|
|
|
|
__revision__ = "$Id$"
|
|
|
|
__all__ = ['build',
|
|
'build_py',
|
|
'build_ext',
|
|
'build_clib',
|
|
'install',
|
|
'install_lib',
|
|
'install_scripts',
|
|
'install_data',
|
|
'clean',
|
|
'sdist',
|
|
'bdist',
|
|
'bdist_dumb',
|
|
]
|