~vcs-imports/zope.app.server/trunk

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: fafhrd
  • Date: 2009-12-20 03:19:33 UTC
  • Revision ID: vcs-imports@canonical.com-20091220031933-076ft5nd2cqo3qq7
Use zope.password instead of zope.app.authentication

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
##############################################################################
19
19
"""Setup for zope.app.server package
20
20
 
21
 
$Id: setup.py 103841 2009-09-11 15:53:04Z faassen $
 
21
$Id: setup.py 106792 2009-12-20 03:19:33Z fafhrd $
22
22
"""
23
23
import os
24
24
from setuptools import setup, find_packages
27
27
    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
28
28
 
29
29
setup(name='zope.app.server',
30
 
      version = '3.4.3dev',
 
30
      version = '3.5.0dev',
31
31
      author='Zope Corporation and Contributors',
32
32
      author_email='zope-dev@zope.org',
33
33
      description='ZServer integration for Zope 3 Applications',
56
56
      install_requires=['setuptools',
57
57
                        'zope.app.applicationcontrol',
58
58
                        'zope.app.appsetup >= 3.11.0',
59
 
                        'zope.app.authentication',
60
59
                        'zope.app.publication',
61
60
                        'zope.app.wsgi',
62
61
                        'zope.configuration',
64
63
                        'zope.interface',
65
64
                        'zope.publisher',
66
65
                        'zope.server',
 
66
                        'zope.password',
67
67
                        'zope.processlifetime',
68
68
                        'zdaemon',
69
69
                        'ZConfig',