summaryrefslogtreecommitdiff
path: root/setup.py
blob: 2639fe68ed8c82cf9839dd9c1f45b65eab44bd05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
##############################################################################
#
# 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.security package

$Id$
"""

import os

from setuptools import setup, find_packages, Extension

setup(name='zope.security',
      version = '3.4.0b3',
      url='http://svn.zope.org/zope.security',
      license='ZPL 2.1',
      description='Zope3 Security Architecture',
      author='Zope Corporation and Contributors',
      author_email='zope3-dev@zope.org',
      long_description='The Security framework provides a generic mechanism '
                       'to implement security policies on Python objects.',

      packages=find_packages('src'),
      package_dir = {'': 'src'},

      ext_modules=[Extension("zope.security._proxy",
                             [os.path.join('src', 'zope', 'security',
                                           "_proxy.c")
                              ], include_dirs=['include']),
                   Extension("zope.security._zope_security_checker",
                             [os.path.join('src', 'zope', 'security',
                                           "_zope_security_checker.c")
                              ]),
                   ],
      namespace_packages=['zope',],
      install_requires=['setuptools',
                        'pytz',
                        'zope.component',
                        'zope.configuration',
                        'zope.exceptions',
                        'zope.i18nmessageid',
                        'zope.interface',
                        'zope.location>=3.4.0b1.dev-r75152',
                        'zope.proxy',
                        'zope.schema',
                        'zope.thread',
                        ],
      include_package_data = True,
      extras_require = {'untrustedpython': ["RestrictedPython"]},
      zip_safe = False,
      )