From: Zooko O'Whielacronx Date: Thu, 20 Dec 2007 23:13:10 +0000 (-0700) Subject: setup: fix the name of "misc/dependencies" for bootstrapping setuptools X-Git-Url: https://git.rkrishnan.org/pf/content/en/service/sitemap.html?a=commitdiff_plain;h=6809fa659eb22f1f51200654e6d41c2889832236;p=tahoe-lafs%2Ftahoe-lafs.git setup: fix the name of "misc/dependencies" for bootstrapping setuptools --- diff --git a/setup.py b/setup.py index 45f34dec..f0a45fe6 100644 --- a/setup.py +++ b/setup.py @@ -33,8 +33,9 @@ else: # breaks inside older setuptools' sandboxing. 0.6c4 is the first # version which fixed this problem. min_version='0.6c4' + downloadbase = os.path.join('misc', 'dependencies')+os.path.sep use_setuptools(min_version=min_version, - download_base="file:%s" % os.path.join('misc', 'dependencies'), + download_base=download_base, download_delay=0) from setuptools import Extension, find_packages, setup