diff options
| -rwxr-xr-x | ez_setup.py | 2 | ||||
| -rwxr-xr-x | setup.py | 2 | ||||
| -rwxr-xr-x | setuptools.txt | 7 | ||||
| -rw-r--r-- | setuptools/__init__.py | 2 |
4 files changed, 10 insertions, 3 deletions
diff --git a/ez_setup.py b/ez_setup.py index 248f4078..23841bae 100755 --- a/ez_setup.py +++ b/ez_setup.py @@ -14,7 +14,7 @@ the appropriate options to ``use_setuptools()``. This file can also be run as a script to install or upgrade setuptools. """ import sys -DEFAULT_VERSION = "0.6a5" +DEFAULT_VERSION = "0.6a6" DEFAULT_URL = "http://cheeseshop.python.org/packages/%s/s/setuptools/" % sys.version[:3] md5_data = { @@ -15,7 +15,7 @@ def get_description(): f.close() return ''.join(lines) -VERSION = "0.6a5" +VERSION = "0.6a6" from setuptools import setup, find_packages import sys from setuptools.command import __all__ as SETUP_COMMANDS diff --git a/setuptools.txt b/setuptools.txt index df2a613e..66e99048 100755 --- a/setuptools.txt +++ b/setuptools.txt @@ -221,6 +221,13 @@ unless you need the associated ``setuptools`` feature. your build process; for example, extensions that process setup() arguments and turn them into EGG-INFO metadata files. + (Note: projects listed in ``setup_requires`` will NOT be automatically + installed on the system where the setup script is being run. They are + simply downloaded to the setup directory if they're not locally available + already. If you want them to be installed, as well as being available + when the setup script is run, you should add them to ``install_requires`` + **and** ``setup_requires``.) + ``namespace_packages`` A list of strings naming the project's "namespace packages". A namespace package is a package that may be split across multiple project diff --git a/setuptools/__init__.py b/setuptools/__init__.py index aa3f4e32..f671acc9 100644 --- a/setuptools/__init__.py +++ b/setuptools/__init__.py @@ -8,7 +8,7 @@ from distutils.core import Command as _Command from distutils.util import convert_path import os.path -__version__ = '0.6a5' +__version__ = '0.6a6' __all__ = [ 'setup', 'Distribution', 'Feature', 'Command', 'Extension', 'Require', 'find_packages' |
