diff options
author | Gregory P. Smith <greg@mad-scientist.com> | 2000-05-12 00:52:23 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@mad-scientist.com> | 2000-05-12 00:52:23 (GMT) |
commit | b2e3bb3d6aaf4ef04211b932c64ef9cd5adc56bb (patch) | |
tree | e8d4e539fef4c83ccbf22ee1169a8e21cc25ddc9 /Lib/distutils/dist.py | |
parent | bb8c71d56370a97d2c9b5db0935475f1c99d422a (diff) | |
download | cpython-b2e3bb3d6aaf4ef04211b932c64ef9cd5adc56bb.zip cpython-b2e3bb3d6aaf4ef04211b932c64ef9cd5adc56bb.tar.gz cpython-b2e3bb3d6aaf4ef04211b932c64ef9cd5adc56bb.tar.bz2 |
Patch from Bastien Kleineidam:
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.)
Diffstat (limited to 'Lib/distutils/dist.py')
-rw-r--r-- | Lib/distutils/dist.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/distutils/dist.py b/Lib/distutils/dist.py index a0c6c9e..998cff7 100644 --- a/Lib/distutils/dist.py +++ b/Lib/distutils/dist.py @@ -154,6 +154,8 @@ class Distribution: self.ext_package = None self.include_dirs = None self.extra_path = None + self.scripts = None + self.data = None # And now initialize bookkeeping stuff that can't be supplied by # the caller at all. 'command_obj' maps command names to |