Lines Matching refs:to_dir
91 def _build_egg(egg, tarball, to_dir): argument
108 log.warn('Building a Distribute egg in %s', to_dir)
109 _python_cmd('setup.py', '-q', 'bdist_egg', '--dist-dir', to_dir)
119 def _do_download(version, download_base, to_dir, download_delay): argument
120 egg = os.path.join(to_dir, 'distribute-%s-py%d.%d.egg'
124 to_dir, download_delay)
125 _build_egg(egg, tarball, to_dir)
132 to_dir=os.curdir, download_delay=15, no_fake=True): argument
134 to_dir = os.path.abspath(to_dir)
145 return _do_download(version, download_base, to_dir, download_delay)
161 return _do_download(version, download_base, to_dir,
164 return _do_download(version, download_base, to_dir,
168 _create_fake_setuptools_pkg_info(to_dir)
171 to_dir=os.curdir, delay=15): argument
181 to_dir = os.path.abspath(to_dir)
188 saveto = os.path.join(to_dir, tgz_name)