summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorPJ Eby <distutils-sig@python.org>2005-07-11 04:21:57 +0000
committerPJ Eby <distutils-sig@python.org>2005-07-11 04:21:57 +0000
commitcd6fbcf869468bc61cc071b2751d858054ce8549 (patch)
treebd28e4e6ce34eff1d0b24a9aa5343f1624ef3596 /setup.py
parentd73eb6d059ce9ef94848b918c52453e39a0d213d (diff)
downloadpython-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-xsetup.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index c41ec57c..71c0e846 100755
--- a/setup.py
+++ b/setup.py
@@ -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,