Skip to content

Commit

Permalink
Copied remotely
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam Groszer committed Jul 21, 2007
2 parents 4447510 + 8abdc69 commit 2fccece
Showing 1 changed file with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions setup.py
@@ -0,0 +1,51 @@
##############################################################################
#
# Copyright (c) 2006 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.
#
##############################################################################
"""Setup for zope.testbrowser package
$Id$
"""

from setuptools import setup, find_packages

setup(
name = 'zope.testbrowser',
version = '3.4.1',
url = 'http://svn.zope.org/zope.testbrowser',
license = 'ZPL 2.1',
description = 'Zope testbrowser',
author = 'Zope Corporation and Contributors',
author_email = 'zope3-dev@zope.org',
long_description = 'An easy to use programmatic web browser'
' with special focus on testing. Used in Zope 3, but not Zope'
' specific. The zope.testbrowser package used in the Zope 3'
' project for functional testing; this stand-alone version can be'
' used to test or otherwise interact with any web site.',
packages = find_packages('src'),
package_dir = {'': 'src'},
namespace_packages = ['zope',],
tests_require = ['zope.testing'],
install_requires = ['setuptools'],
extras_require = dict(
test = ['zope.interface',
'zope.schema',
'zope.app.component',
'zope.app.folder',
'zope.app.testing',
'zope.app.zcmlfiles',
'zope.app.securitypolicy',
],
),
include_package_data = True,
zip_safe = False,
)

0 comments on commit 2fccece

Please sign in to comment.