]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
setup: reorder dependencies to be sort of increasing order of how much they depend...
authorZooko O'Whielacronx <zooko@zooko.com>
Sat, 25 Oct 2008 13:47:39 +0000 (06:47 -0700)
committerZooko O'Whielacronx <zooko@zooko.com>
Sat, 25 Oct 2008 13:47:39 +0000 (06:47 -0700)
Not that the order makes any different to how it gets installed, as far as I can tell.

_auto_deps.py

index 46d455ca32c55bf81f1ffdaf672ff5f03fd8be34..1d0afdf13e0da2afad9fe73595ba93ee58c29e78 100644 (file)
@@ -1,19 +1,20 @@
-install_requires=["zfec >= 1.1.0",
-                  "foolscap[secure_connections] >= 0.3.1",
-                  "simplejson >= 1.4",
+install_requires=[
+                  # we require 0.6c8 to build, but can handle older versions
+                  # to run
+                  "setuptools >= 0.6a9",
 
                   # pycryptopp < 0.5 had a bug which, using a Microsoft
                   # compiler, or using some versions of g++ while linking
                   # against certain older versions of Crypto++, would cause
                   # incorrect AES results.
                   "pycryptopp >= 0.5",
-                  "Nevow >= 0.6.0",
+                  "zfec >= 1.1.0",
+                  "simplejson >= 1.4",
+
                   "zope.interface",
                   "Twisted >= 2.4.0",
-
-                  # we require 0.6c8 to build, but can handle older versions
-                  # to run
-                  "setuptools >= 0.6a9",
+                  "foolscap[secure_connections] >= 0.3.1",
+                  "Nevow >= 0.6.0",
                   ]
 import sys
 if hasattr(sys, 'frozen'):