~ubuntu-branches/ubuntu/utopic/zope.container/utopic

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Gediminas Paulauskas
  • Date: 2011-08-12 12:47:13 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: menesis@pov.lt-20110812124713-6vjm8q1wc7o31w0j
Tags: 3.12.0-0ubuntu1
* New upstream release.
  - Now includes a license.
* debian/patches: remove the automatic patch that added the license.
* Needs van.pydeb (>= 1.3.3) to correctly handle "zope.security[zcml]>=3.8"
  dependency.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
##############################################################################
2
2
#
3
 
# Copyright (c) 2006 Zope Corporation and Contributors.
 
3
# Copyright (c) 2006 Zope Foundation and Contributors.
4
4
# All Rights Reserved.
5
5
#
6
6
# This software is subject to the provisions of the Zope Public License,
16
16
# When developing and releasing this package, please follow the documented
17
17
# Zope Toolkit policies as described by this documentation.
18
18
##############################################################################
19
 
"""Setup for zope.container package"""
20
 
 
 
19
"""Setup for zope.container package
 
20
"""
21
21
import os
22
22
from setuptools import setup, find_packages, Extension
23
23
 
24
 
 
25
24
def read(*rnames):
26
25
    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
27
26
 
28
 
 
29
27
setup(name='zope.container',
30
 
      version='3.11.2',
31
 
      author='Zope Corporation and Contributors',
 
28
      version = '3.12.0',
 
29
      author='Zope Foundation and Contributors',
32
30
      author_email='zope-dev@zope.org',
33
31
      description='Zope Container',
34
32
      long_description=(
63
61
                              ], include_dirs=['include']),
64
62
                   ],
65
63
      extras_require=dict(
66
 
          test=[
67
 
              'zope.configuration',
68
 
              'zope.security',
69
 
              'zope.testing',
70
 
              ]),
 
64
          test=['zope.testing',
 
65
                ],
 
66
          zcml=[
 
67
                'zope.component[zcml]',
 
68
                'zope.configuration',
 
69
                'zope.security[zcml]>=3.8',
 
70
                ]),
71
71
      install_requires=['setuptools',
72
72
                        'zope.interface',
73
73
                        'zope.dottedname',