summaryrefslogtreecommitdiff
path: root/command/bdist_dumb.py
diff options
context:
space:
mode:
authorGreg Ward <gward@python.net>2000-09-25 01:41:15 +0000
committerGreg Ward <gward@python.net>2000-09-25 01:41:15 +0000
commit0881101deede0e48530b1245c88f396acc1cbf6f (patch)
treedd6b499b3da12d9bed51c624cff59690e25ea512 /command/bdist_dumb.py
parenta9f1b90db48367bd932b4d19310d184a2e5cf317 (diff)
downloadpython-setuptools-git-0881101deede0e48530b1245c88f396acc1cbf6f.tar.gz
Added 'boolean_options' list to support config file parsing.
Diffstat (limited to 'command/bdist_dumb.py')
-rw-r--r--command/bdist_dumb.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/command/bdist_dumb.py b/command/bdist_dumb.py
index 1fdbf425..520098db 100644
--- a/command/bdist_dumb.py
+++ b/command/bdist_dumb.py
@@ -32,6 +32,8 @@ class bdist_dumb (Command):
"directory to put final built distributions in"),
]
+ boolean_options = ['keep-temp']
+
default_format = { 'posix': 'gztar',
'nt': 'zip', }