]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
setup: pretend the tahoe requires twisted to set up, so that twisted will be there...
authorZooko O'Whielacronx <zooko@zooko.com>
Sat, 25 Oct 2008 13:50:42 +0000 (06:50 -0700)
committerZooko O'Whielacronx <zooko@zooko.com>
Sat, 25 Oct 2008 13:50:42 +0000 (06:50 -0700)
setup.py

index c24290cb3394f1a237b58990d8aafa3d737db892..9f290f27bf017a6351b72a844bbf1cec49c13936 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -188,11 +188,12 @@ it remains available even when some of the peers are unavailable,
 malfunctioning, or malicious."""
 
 
-# Default setup_requires are pyutil for the Windows installer builder(see
-# misc/sub-ver.py) and Twisted for the tests.
-#setup_requires = ['pyutil >= 1.3.16', 'Twisted >= 2.4.0']
 setup_requires = []
 
+# Nevow requires Twisted to setup, but doesn't declare that requirement in a way that enables
+# setuptools to satisfy that requirement before Nevow's setup.py tried to "import twisted".
+setup_requires.append('Twisted >= 2.4.0')
+
 # darcsver is needed only if you want "./setup.py darcsver" to write a new
 # version stamp in src/allmydata/_version.py, with a version number derived from
 # darcs history.