1##############################################################################
2#
3# Copyright (c) 2009 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"""Setup for zope.password package
15
16$Id: setup.py 112747 2010-05-27 08:07:28Z janwijbrand $
17"""
18from setuptools import setup, find_packages
19
20
21setup(name='zope.password',
22      version='3.6.1',
23      author='Zope Foundation and Contributors',
24      author_email='zope-dev@zope.org',
25      description='Password encoding and checking utilities',
26      long_description=(
27        open('README.txt').read()
28        + '\n\n' +
29        open('CHANGES.txt').read()
30        ),
31      url='http://pypi.python.org/pypi/zope.password',
32      license='ZPL 2.1',
33      classifiers = [
34          'Development Status :: 5 - Production/Stable',
35          'Environment :: Web Environment',
36          'Intended Audience :: Developers',
37          'License :: OSI Approved :: Zope Public License',
38          'Programming Language :: Python',
39          'Natural Language :: English',
40          'Operating System :: OS Independent',
41          'Topic :: Internet :: WWW/HTTP',
42          'Framework :: Zope3'],
43      keywords='zope authentication password zpasswd',
44      packages=find_packages('src'),
45      package_dir = {'': 'src'},
46      extras_require=dict(vocabulary=['zope.schema'],
47                          test=['zope.schema'],
48                          ),
49      namespace_packages=['zope'],
50      install_requires=['setuptools',
51                        'zope.component',
52                        'zope.configuration',
53                        'zope.interface',
54                        ],
55      include_package_data = True,
56      zip_safe = False,
57      )
58