Commit cec09505 authored by Jim Fulton's avatar Jim Fulton

Updated to be a buildout and to use Zope 3.3.0 version.

Updated release info.
parent 00f474ee
zope.proxy Package Changelog
============================
zope.proxy version 3.3.0 (2006/12/20)
-------------------------------------
- Corresponds to the verison of the zope.proxy package shipped as part of
the Zope 3.3.0 release.
zope.proxy version 3.2.0 (2006/01/05)
-------------------------------------
......
Installing This Package
=======================
Prerequisites
-------------
The installation steps below assume that you have the cool new 'setuptools'
package installed in your Python. Here is where to get it:
$ wget http://peak.telecommunity.com/dist/ez_setup.py
$ /path/to/your/python ez_setup.py # req. write access to 'site-packages'
- Docs for EasyInstall:
http://peak.telecommunity.com/DevCenter/EasyInstall
- Docs for setuptools:
http://peak.telecommunity.com/DevCenter/setuptools
- Docs for eggs:
http://peak.telecommunity.com/DevCenter/PythonEggs
Installing a Development Checkout
---------------------------------
Check out the package from subversion:
$ svn co svn+ssh://svn.zope.org/repos/main/zope.proxy/trunk \
src/zope.proxy
$ cd src/zope.proxy
Install it as a "devlopment egg" (which also installs its "hard"
dependencies):
$ /path/to/your/python setup.py devel
The installation of dependency eggs uses the 'setup.cfg' file in
the checkout. You can supply '--find-links' on the command line to
point it at a non-standard package repository.
Running the Tests
-----------------
To test the package, you will also need the 'zope.testing' package, which
can't (yet) be automatically installed. Eventually, you should be able to
type:
$ /path/to/your/python setup.py test
and have it install the "testing dependencies." Today, the workaround
is to install it manually:
$ /path/to/easy_install --find-links="...." zope.testing
You can then run the tests (finally) from the checkout directory:
$ /path/to/your/python test.py
Running:
.............
Ran 13 tests with 0 failures and 0 errors in 0.094 seconds.
Installing a Source Distribution
--------------------------------
You can also install it from a source distribution:
$ /path/to/easy_install --find-links="...." -eb src zope.proxy
$ cd src/zope.proxy
$ /path/to/your/python setup.py devel
Installing a Binary Egg
-----------------------
Install the package as a "binary egg" (which also installs its "hard"
dependencies):
$ /path/to/easy_install --find-links="...." zope.proxy
exclude setup.cfg
[buildout]
parts = test
develop = .
[test]
recipe = zc.recipe.testrunner
eggs = zope.proxy
##############################################################################
#
# Copyright (c) 2004 Zope Corporation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
"""Workspace configuration wrapper script
$Id$
"""
import workspace.develop
workspace.develop.main()
[development]
depends = zope.testing
[egg_info]
tag_build = .dev
tag_svn_revision = 1
......@@ -24,7 +24,7 @@ except ImportError, e:
from distutils.core import setup, Extension
setup(name='zope.proxy',
version='3.3-dev',
version='3.3.0',
url='http://svn.zope.org/zope.proxy',
license='ZPL 2.1',
description='Zope Proxies',
......@@ -49,8 +49,7 @@ setup(name='zope.proxy',
namespace_packages=['zope',],
tests_require = ['zope.testing'],
install_requires=['zope.interface'],
install_requires=['zope.interface', 'setuptools'],
include_package_data = True,
zip_safe = False,
)
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment