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.
This commit is contained in:
Zooko O'Whielacronx 2008-10-25 06:47:39 -07:00
parent b26ad316bb
commit 7912f9ff27

View 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'):