From 7912f9ff2700e0e7f74338b42277045dc710777c Mon Sep 17 00:00:00 2001
From: Zooko O'Whielacronx <zooko@zooko.com>
Date: Sat, 25 Oct 2008 06:47:39 -0700
Subject: [PATCH] setup: reorder dependencies to be sort of increasing order of
 how much they depend on other stuff Not that the order makes any different to
 how it gets installed, as far as I can tell.

---
 _auto_deps.py | 17 +++++++++--------
 1 file changed, 9 insertions(+), 8 deletions(-)

diff --git a/_auto_deps.py b/_auto_deps.py
index 46d455ca..1d0afdf1 100644
--- a/_auto_deps.py
+++ b/_auto_deps.py
@@ -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'):
-- 
2.45.2