############################################################################## # # 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.i18nmessageid package $Id$ """ import os try: from setuptools import setup, Extension except ImportError, e: from distutils.core import setup, Extension setup(name='zope.schema', version='3.0.0.2', url='http://svn.zope.org/zope.schema/tags/3.0.0', license='ZPL 2.1', description='Zope3 Data Schemas', author='Zope Corporation and Contributors', author_email='zope3-dev@zope.org', packages=['zope', 'zope.schema'], package_dir = {'': 'src'}, namespace_packages=['zope',], tests_require = ['zope.testing'], install_requires=['zope.i18nmessageid', 'zope.interface', ], include_package_data = True, zip_safe = False, )