#! /usr/bin/python
+# N.B.: this expects to run from the top of the source tree
+
+import os, sys
from ez_setup import use_setuptools
-import sys
if 'cygwin' in sys.platform.lower():
min_version='0.6c6'
else:
from setuptools import setup
+dependency_tarballs=[ os.path.join("misc", "dependencies", fn)
+ for fn in os.listdir(os.path.join("misc", "dependencies"))
+ if fn.endswith(".tar.gz") ]
+dependency_links=["http://allmydata.org/trac/tahoe/wiki/Dependencies"] + dependency_tarballs
+
setup(name='tahoe-deps',
version="1",
install_requires=["zfec >= 1.0.3",
- "foolscap >= 0.1.6", "simplejson >= 1.4",
+ "foolscap >= 0.1.6",
+ "simplejson >= 1.4",
#"nevow", # we need nevow, but it doesn't seem to be
# installable by easy_install
],
+ dependency_links=dependency_links,
)