diff options
author | PJ Eby <distutils-sig@python.org> | 2005-07-11 04:21:57 +0000 |
---|---|---|
committer | PJ Eby <distutils-sig@python.org> | 2005-07-11 04:21:57 +0000 |
commit | cd6fbcf869468bc61cc071b2751d858054ce8549 (patch) | |
tree | bd28e4e6ce34eff1d0b24a9aa5343f1624ef3596 /setup.py | |
parent | d73eb6d059ce9ef94848b918c52453e39a0d213d (diff) | |
download | python-setuptools-git-cd6fbcf869468bc61cc071b2751d858054ce8549.tar.gz |
Update to 0.5a9, add zip_safe flag, and fix a doc error.
--HG--
branch : setuptools
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041116
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -15,7 +15,7 @@ def get_description(): f.close() return ''.join(lines) -VERSION = "0.5a8" +VERSION = "0.5a9" from setuptools import setup, find_packages @@ -35,7 +35,7 @@ setup( packages = find_packages(), py_modules = ['pkg_resources'], scripts = ['easy_install.py'], - + zip_safe = True, |