source: products/vendor/Products.MailHost/current/setup.py

Last change on this file was 3356, checked in by fenix, 12 years ago

Load 2.13.1 into vendor/Products.MailHost?/current.

  • Property svn:eol-style set to native
File size: 1.3 KB
Line 
1##############################################################################
2#
3# Copyright (c) 2010 Zope Foundation and Contributors.
4# All Rights Reserved.
5#
6# This software is subject to the provisions of the Zope Public License,
7# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
8# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
9# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
10# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
11# FOR A PARTICULAR PURPOSE.
12#
13##############################################################################
14
15from setuptools import setup, find_packages
16
17setup(name='Products.MailHost',
18      version = '2.13.1',
19      url='http://pypi.python.org/pypi/Products.MailHost',
20      license='ZPL 2.1',
21      description="zope.sendmail integration for Zope 2.",
22      author='Zope Foundation and Contributors',
23      author_email='zope-dev@zope.org',
24      long_description=open('README.txt').read() + '\n' +
25                       open('CHANGES.txt').read(),
26      packages=find_packages('src'),
27      namespace_packages=['Products'],
28      package_dir={'': 'src'},
29      install_requires=[
30        'setuptools',
31        'Zope2 >= 2.13.0a1',
32      ],
33      include_package_data=True,
34      zip_safe=False,
35      )
Note: See TracBrowser for help on using the repository browser.