~menesis/ubuntu/natty/zope.app.appsetup/natty

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Gediminas Paulauskas
  • Date: 2010-08-31 17:05:30 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: menesis@pov.lt-20100831170530-1kqlch6txq2pru8l
Tags: 3.14.0-0ubuntu1
* New upstream release.
* LICENSE.txt: add the license.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
##############################################################################
19
19
"""Setup for zope.app.appsetup package
20
20
 
21
 
$Id: setup.py 107038 2009-12-24 06:56:51Z icemac $
 
21
$Id: setup.py 110813 2010-04-13 16:45:10Z faassen $
22
22
"""
23
23
 
24
24
import os
30
30
 
31
31
setup(
32
32
    name='zope.app.appsetup',
33
 
    version = '3.13.0',
 
33
    version = '3.14.0',
34
34
    author='Zope Corporation and Contributors',
35
35
    author_email='zope-dev@zope.org',
36
36
    description="Zope app setup helper",
62
62
    url='http://pypi.python.org/pypi/zope.app.appsetup',
63
63
    packages=find_packages('src'),
64
64
    package_dir={'': 'src'},
65
 
    extras_require=dict(test=['zope.app.testing',
66
 
                              'zope.componentvocabulary',
67
 
                              'zope.principalregistry',
68
 
                              ]),
 
65
    extras_require=dict(
 
66
        test=[
 
67
            'zope.componentvocabulary',
 
68
            'zope.principalregistry',
 
69
            'zope.testing',
 
70
            ]
 
71
        ),
69
72
    namespace_packages=['zope', 'zope.app'],
70
73
    install_requires=[
71
74
        'ZODB3',
81
84
        'zope.security >= 3.6.0',
82
85
        'zope.session',
83
86
        'zope.site',
84
 
        'zope.testing',
85
87
        'zope.traversing',
86
88
        ],
87
89
    include_package_data=True,