diff options
author | PJ Eby <distutils-sig@python.org> | 2005-07-18 02:06:30 +0000 |
---|---|---|
committer | PJ Eby <distutils-sig@python.org> | 2005-07-18 02:06:30 +0000 |
commit | f7288a7f76db04584c4fbb43d86adfda29285e90 (patch) | |
tree | b2e959367f8882dfc7c5f74e8aec4a7e81f3b641 /setup.py | |
parent | c7214855992b9657d6a490f46764ffaf4089c1cb (diff) | |
download | external_python_setuptools-f7288a7f76db04584c4fbb43d86adfda29285e90.tar.gz external_python_setuptools-f7288a7f76db04584c4fbb43d86adfda29285e90.tar.bz2 external_python_setuptools-f7288a7f76db04584c4fbb43d86adfda29285e90.zip |
Massive API refactoring; see setuptools.txt changelog for details. Also,
add ``#egg=project-version`` link support, and docs on how to make your
package available for EasyInstall to find.
--HG--
branch : setuptools
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041136
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -15,7 +15,7 @@ def get_description(): f.close() return ''.join(lines) -VERSION = "0.5a13" +VERSION = "0.6a0" from setuptools import setup, find_packages |