diff options
author | tarek <none@none> | 2009-09-11 18:29:31 +0200 |
---|---|---|
committer | tarek <none@none> | 2009-09-11 18:29:31 +0200 |
commit | 299a9d2f356de19fc6df0952655c79817aa2c1b1 (patch) | |
tree | ee6a9cfee0a75ee9959a7c6ae4ab4d2803b93a41 /distribute_setup.py | |
parent | 364308e9ce78818d74e88987459e3c08f8e80d11 (diff) | |
download | external_python_setuptools-299a9d2f356de19fc6df0952655c79817aa2c1b1.tar.gz external_python_setuptools-299a9d2f356de19fc6df0952655c79817aa2c1b1.tar.bz2 external_python_setuptools-299a9d2f356de19fc6df0952655c79817aa2c1b1.zip |
better marker for easy_install detection
--HG--
branch : distribute
extra : rebase_source : 2119ce08a6104dd1269137a28044684db358d402
Diffstat (limited to 'distribute_setup.py')
-rw-r--r-- | distribute_setup.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/distribute_setup.py b/distribute_setup.py index 83b56d4d..060795ee 100644 --- a/distribute_setup.py +++ b/distribute_setup.py @@ -26,7 +26,7 @@ from distutils import log import subprocess IS_JYTHON = sys.platform.startswith('java') -DEFAULT_VERSION = "0.6.2" +DEFAULT_VERSION = "0.6.1" DEFAULT_URL = "http://pypi.python.org/packages/source/d/distribute/" def quote(c): @@ -60,7 +60,8 @@ def _install(tarball): log.warn('Now working in %s' % subdir) # installing - assert python_cmd('setup.py -q install') + log.warn('Installing Distribute') + assert python_cmd('setup.py install') finally: os.chdir(old_wd) @@ -81,7 +82,8 @@ def _build_egg(tarball, to_dir=os.curdir): log.warn('Now working in %s' % subdir) # building an egg - python_cmd('setup.py -v -q bdist_egg --dist-dir %s' % to_dir) + log.warn('Building a Distribute egg in %s' % to_dir) + python_cmd('setup.py -q bdist_egg --dist-dir %s' % to_dir) # returning the result for file in os.listdir(to_dir): |