diff options
author | PJ Eby <distutils-sig@python.org> | 2005-07-07 16:28:43 +0000 |
---|---|---|
committer | PJ Eby <distutils-sig@python.org> | 2005-07-07 16:28:43 +0000 |
commit | c1112aa5fb7da9996e5a0ebe8689e5cf9ca72cee (patch) | |
tree | 06d3d26a04aae3e25b0edc503b24f606cb76baef /setup.py | |
parent | 61d2fd1d71e8940531c35327e6d91c41ddcd9dbd (diff) | |
download | external_python_setuptools-c1112aa5fb7da9996e5a0ebe8689e5cf9ca72cee.tar.gz external_python_setuptools-c1112aa5fb7da9996e5a0ebe8689e5cf9ca72cee.tar.bz2 external_python_setuptools-c1112aa5fb7da9996e5a0ebe8689e5cf9ca72cee.zip |
Add upload support to setuptools, and make default downloads of setuptools
come from PyPI/python.org rather than from telecommunity.com. Bump to
version 0.5a7.
--HG--
branch : setuptools
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041090
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,7 +1,7 @@ #!/usr/bin/env python """Distutils setup file, used to install or test 'setuptools'""" -VERSION = "0.5a6" +VERSION = "0.5a7" from setuptools import setup, find_packages, Require setup( @@ -26,8 +26,7 @@ setup( "close. See the home page and download page for details and docs.", keywords = "CPAN PyPI distutils eggs package management", - url = "http://peak.telecommunity.com/DevCenter/PythonEggs", - download_url = "http://peak.telecommunity.com/DevCenter/EasyInstall", + url = "http://peak.telecommunity.com/DevCenter/EasyInstall", test_suite = 'setuptools.tests.test_suite', requires = [ @@ -39,6 +38,7 @@ setup( + packages = find_packages(), py_modules = ['pkg_resources'], scripts = ['easy_install.py'], |