From: david-sarah Date: Wed, 19 Jan 2011 23:33:05 +0000 (-0800) Subject: setup.py: add descriptions for some of the setup commands. ref #1306 X-Git-Tag: allmydata-tahoe-1.8.2b1~32 X-Git-Url: https://git.rkrishnan.org/(%5B%5E?a=commitdiff_plain;h=999339ed4e670da8e2dd6d9d96062b6e31e2574c;p=tahoe-lafs%2Ftahoe-lafs.git setup.py: add descriptions for some of the setup commands. ref #1306 --- diff --git a/setup.py b/setup.py index 7cf70f3e..d5725f53 100644 --- a/setup.py +++ b/setup.py @@ -229,7 +229,9 @@ class RunWithPythonPath(Command): sys.exit(rc) class TestMacDiskImage(Command): + description = "test the Mac disk image in dmg format (unmaintained)" user_options = [] + def initialize_options(self): pass def finalize_options(self): @@ -287,7 +289,9 @@ class CheckAutoDeps(Command): class MakeExecutable(Command): + description = "make the 'bin%stahoe' scripts" % (os.sep,) user_options = [] + def initialize_options(self): pass def finalize_options(self): @@ -379,6 +383,7 @@ class MySdist(sdist.sdist): return sdist.sdist.make_distribution(self) + setup_args = {} if version: setup_args["version"] = version