diff options
author | PJ Eby <distutils-sig@python.org> | 2005-07-08 15:52:05 +0000 |
---|---|---|
committer | PJ Eby <distutils-sig@python.org> | 2005-07-08 15:52:05 +0000 |
commit | 82b1c266a8a07292eed2419b1177db78785b1ae4 (patch) | |
tree | 6c7fe0b0f474a7b2d5d4e3c5f31a6c145027e400 | |
parent | d798d6943f81d938581c37b431b141b013678021 (diff) | |
download | external_python_setuptools-82b1c266a8a07292eed2419b1177db78785b1ae4.tar.gz external_python_setuptools-82b1c266a8a07292eed2419b1177db78785b1ae4.tar.bz2 external_python_setuptools-82b1c266a8a07292eed2419b1177db78785b1ae4.zip |
Doc and other updates for 0.5a8 release. Add project aliases for source
and binary register+upload.
--HG--
branch : setuptools
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041100
-rwxr-xr-x | EasyInstall.txt | 17 | ||||
-rwxr-xr-x | ez_setup.py | 2 | ||||
-rwxr-xr-x | setup.cfg | 4 | ||||
-rwxr-xr-x | setup.py | 4 | ||||
-rwxr-xr-x | setuptools.txt | 4 | ||||
-rw-r--r-- | setuptools/__init__.py | 2 |
6 files changed, 24 insertions, 9 deletions
diff --git a/EasyInstall.txt b/EasyInstall.txt index c48b7504..f3025f9f 100755 --- a/EasyInstall.txt +++ b/EasyInstall.txt @@ -13,6 +13,11 @@ page. You'll need to register for a Wiki ID if you don't already have one; you can do that from the `User Preferences <http://peak.telecommunity.com/DevCenter/UserPreferences>`_ page. Thanks!) +(Also, if you'd like to learn about how you can use ``setuptools`` to make your +own packages work better with EasyInstall, or provide EasyInstall-like features +without requiring your users to use EasyInstall directly, you'll probably want +to check out the full `setuptools`_ documentation as well.) + .. contents:: **Table of Contents** @@ -24,7 +29,7 @@ Installing "Easy Install" ------------------------- Windows users can just download and run the `setuptools binary installer for -Windows <http://peak.telecommunity.com/dist/setuptools-0.5a7.win32.exe>`_. +Windows <http://peak.telecommunity.com/dist/setuptools-0.5a8.win32.exe>`_. All others should just download `ez_setup.py <http://peak.telecommunity.com/dist/ez_setup.py>`_, and run it; this will download and install the appropriate ``setuptools`` egg for your Python @@ -65,7 +70,7 @@ version, and automatically downloading, building, and installing it:: **Example 2**. Install or upgrade a package by name and version by finding links on a given "download page":: - easy_install -f http://peak.telecommunity.com/dist "setuptools>=0.5a7" + easy_install -f http://peak.telecommunity.com/dist "setuptools>=0.5a8" **Example 3**. Download a source distribution from a specified URL, automatically building and installing it:: @@ -490,6 +495,12 @@ Known Issues in Exemaker. So, don't use Exemaker to wrap ``easy_install.py``, or at any rate don't expect it to work with all packages. +0.5a8 + * There is now a separate documentation page for `setuptools`_; revision + history that's not specific to EasyInstall has been moved to that page. + + .. _setuptools: http://peak.telecommunity.com/DevCenter/setuptools + 0.5a5 * Made ``easy_install`` a standard ``setuptools`` command, moving it from the ``easy_install`` module to ``setuptools.command.easy_install``. Note @@ -587,7 +598,7 @@ Known Issues * Misc. bug fixes 0.3a1 - Initial release. + * Initial release. Future Plans diff --git a/ez_setup.py b/ez_setup.py index e7440aa9..0b240bd7 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. """ -DEFAULT_VERSION = "0.5a7" +DEFAULT_VERSION = "0.5a8" DEFAULT_URL = "http://www.python.org/packages/source/s/setuptools/" import sys, os diff --git a/setup.cfg b/setup.cfg new file mode 100755 index 00000000..9507485a --- /dev/null +++ b/setup.cfg @@ -0,0 +1,4 @@ +[aliases] +source = register sdist binary +binary = bdist_egg upload --show-response + @@ -15,7 +15,7 @@ def get_description(): f.close() return ''.join(lines) -VERSION = "0.5a7" +VERSION = "0.5a8" from setuptools import setup, find_packages, Require setup( @@ -28,7 +28,7 @@ setup( license="PSF or ZPL", long_description = get_description(), keywords = "CPAN PyPI distutils eggs package management", - url = "http://peak.telecommunity.com/DevCenter/EasyInstall", + url = "http://peak.telecommunity.com/DevCenter/setuptools", test_suite = 'setuptools.tests.test_suite', requires = [ Require('Distutils','1.0.3','distutils', diff --git a/setuptools.txt b/setuptools.txt index b5070251..df9e3b9c 100755 --- a/setuptools.txt +++ b/setuptools.txt @@ -63,7 +63,7 @@ Installing ``setuptools`` ========================= Windows users can just download and run the `setuptools binary installer for -Windows <http://peak.telecommunity.com/dist/setuptools-0.5a7.win32.exe>`_. +Windows <http://peak.telecommunity.com/dist/setuptools-0.5a8.win32.exe>`_. All others should just download `ez_setup.py`_ and run it; this will download and install the appropriate egg for your Python version. @@ -695,5 +695,5 @@ Release Notes/Change History * Misc. bug fixes 0.3a1 - Initial release. + * Initial release. diff --git a/setuptools/__init__.py b/setuptools/__init__.py index 89c4e7a9..5883010b 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.5a7' +__version__ = '0.5a8' __all__ = [ 'setup', 'Distribution', 'Feature', 'Command', 'Extension', 'Require', |