############################################################################## # # Copyright (c) 2005 Philipp "philiKON" von Weitershausen # 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. # ############################################################################## """Installation script $Id$ """ from distutils.core import setup setup( name="modzope", version="development", description="Run a Zope 3 instance within Apache using mod_python.", maintainer="Philipp von Weitershausen", maintainer_email="philikon@philikon.de", license="ZPL 2.1", url="http://codespeak.net/z3/modzope", platforms = ['any'], packages = ['modzope', 'wsgiref'], package_dir = {'': 'src'}, )