diff options
author | Tres Seaver <tseaver@palladion.com> | 2006-03-13 22:11:25 +0000 |
---|---|---|
committer | Tres Seaver <tseaver@palladion.com> | 2006-03-13 22:11:25 +0000 |
commit | 5ac0f31e32dd3026fbbdb585c6647c6cc7cfb4ca (patch) | |
tree | bc3c78950cffe1c64d900f874939e6f04d08ebc8 /setup.py | |
download | zope-i18n-5ac0f31e32dd3026fbbdb585c6647c6cc7cfb4ca.tar.gz |
Package names can't embed dots.
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..e8fcb91 --- /dev/null +++ b/setup.py @@ -0,0 +1,50 @@ +############################################################################## +# +# 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. +# +############################################################################## +"""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_i18n', + version='1.0', + url='http://svn.zope.org/zope.i18n', + license='ZPL 2.1', + description='Zope3 Internationalization Support', + author='Zope Corporation and Contributors', + author_email='zope3-dev@zope.org', + long_description='', + + packages=['zope', 'zope.i18n'], + package_dir = {'': os.path.join(os.path.dirname(__file__), 'src')}, + + namespace_packages=['zope',], + tests_require = ['zope_testing'], + install_requires=['pytz', + 'zope_component', + 'zope_deprecation', + 'zope_interface', + 'zope_schema', + 'zope_testing', + ], + include_package_data = True, + + zip_safe = False, + ) |