Commit ccc185b3 authored by Hanno Schlichting's avatar Hanno Schlichting

Removed test extra and the remaining dependency on zope.testing.

parent 83821d52
......@@ -2,9 +2,11 @@
CHANGES
=======
3.5.1 (unreleased)
3.6.0 (unreleased)
------------------
- Removed test extra and the remaining dependency on zope.testing.
- Removed use of 'zope.testing.doctestunit' in favor of stdlib's 'doctest.
3.5.0 (2009/01/31)
......
......@@ -27,16 +27,13 @@ def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
setup(name='zope.proxy',
version = '3.5.1dev',
version = '3.6.0dev',
author='Zope Corporation and Contributors',
author_email='zope-dev@zope.org',
description='Generic Transparent Proxies',
long_description=(
read('README.txt')
+ '\n\n' +
# Waaa 'Detailed Documentation\n'
# '----------------------\n'
# + '\n\n' +
read('CHANGES.txt')
),
url='http://pypi.python.org/pypi/zope.proxy',
......@@ -60,10 +57,6 @@ setup(name='zope.proxy',
]),
],
extras_require=dict(
test=['zope.testing']),
tests_require = [
'zope.testing'],
test_suite = 'zope.proxy',
install_requires=[
'zope.interface',
......
# Packaging information for zpkg.
header proxy.h
<extension _zope_proxy_proxy>
source _zope_proxy_proxy.c
depends-on proxy.h
</extension>
#!/usr/bin/env python
##############################################################################
#
# Copyright (c) 2004 Zope Corporation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.0 (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.
#
##############################################################################
"""Sample test script using zope.testing.testrunner
see zope.testing testrunner.txt
$Id$
"""
import os, sys
src = os.path.join(os.path.split(sys.argv[0])[0], 'src')
sys.path.insert(0, src) # put at beginning to avoid one in site_packages
from zope.testing import testrunner
defaults = [
'--path', src,
'--package', 'zope.proxy',
'--tests-pattern', '^tests$',
]
sys.exit(testrunner.run(defaults))
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