diff options
| author | PJ Eby <distutils-sig@python.org> | 2005-07-08 04:48:20 +0000 |
|---|---|---|
| committer | PJ Eby <distutils-sig@python.org> | 2005-07-08 04:48:20 +0000 |
| commit | 592269afeaa4f96bddbaa8b6fbe8dddcea2445a4 (patch) | |
| tree | 5fe55dced4503fdbb70eb5ec692d86003c444fe3 /setuptools/command/__init__.py | |
| parent | 56fcb8fdcc377acf0d74430a3d2d4dbffe306d44 (diff) | |
| download | python-setuptools-git-592269afeaa4f96bddbaa8b6fbe8dddcea2445a4.tar.gz | |
* Added "rotate" command to delete old distribution files, given a set of
patterns to match and the number of files to keep. (Keeps the most
recently-modified distribution files matching each pattern.)
* Added "saveopts" command that saves all command-line options for the
current invocation to the local, global, or per-user configuration file.
Useful for setting defaults without having to hand-edit a configuration
file.
* Added a "setopt" command that sets a single option in a specified
distutils configuration file.
--HG--
branch : setuptools
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041093
Diffstat (limited to 'setuptools/command/__init__.py')
| -rw-r--r-- | setuptools/command/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/command/__init__.py b/setuptools/command/__init__.py index bc5bc878..0606ef9c 100644 --- a/setuptools/command/__init__.py +++ b/setuptools/command/__init__.py @@ -1,6 +1,6 @@ import distutils.command -__all__ = ['test', 'develop', 'bdist_egg'] +__all__ = ['test', 'develop', 'bdist_egg', 'saveopts', 'setopt', 'rotate'] # Make our commands available as though they were part of the distutils |
