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

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Gediminas Paulauskas
  • Author(s): Brian Sutherland
  • Date: 2007-11-08 17:27:48 UTC
  • Revision ID: menesis@pov.lt-20071108172748-2yg2z58jbj9u8tmf
Tags: upstream-3.4.0
ImportĀ upstreamĀ versionĀ 3.4.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
##############################################################################
 
2
#
 
3
# Copyright (c) 2006 Zope Corporation 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.app.schema package
 
15
 
 
16
$Id: setup.py 81144 2007-10-27 19:53:05Z srichter $
 
17
"""
 
18
import os
 
19
from setuptools import setup, find_packages
 
20
 
 
21
def read(*rnames):
 
22
    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
 
23
 
 
24
setup(name='zope.app.schema',
 
25
      version = '3.4.0',
 
26
      author='Zope Corporation and Contributors',
 
27
      author_email='zope3-dev@zope.org',
 
28
      description='Component Architecture based Vocabulary Registry',
 
29
      long_description=(
 
30
          read('README.txt')
 
31
          + '\n\n' +
 
32
          read('CHANGES.txt')
 
33
          ),
 
34
      keywords = "zope3 vocabulary registry local component",
 
35
      classifiers = [
 
36
          'Development Status :: 5 - Production/Stable',
 
37
          'Environment :: Web Environment',
 
38
          'Intended Audience :: Developers',
 
39
          'License :: OSI Approved :: Zope Public License',
 
40
          'Programming Language :: Python',
 
41
          'Natural Language :: English',
 
42
          'Operating System :: OS Independent',
 
43
          'Topic :: Internet :: WWW/HTTP',
 
44
          'Framework :: Zope3'],
 
45
      url='http://cheeseshop.python.org/pypi/zope.app.schema',
 
46
      license='ZPL 2.1',
 
47
      packages=find_packages('src'),
 
48
      package_dir = {'': 'src'},
 
49
      namespace_packages=['zope', 'zope.app'],
 
50
      extras_require = dict(test=['zope.app.testing']),
 
51
      install_requires=['setuptools',
 
52
                        'zope.component',
 
53
                        'zope.configuration',
 
54
                        'zope.interface',
 
55
                        'zope.schema',
 
56
                        ],
 
57
      include_package_data = True,
 
58
      zip_safe = False,
 
59
      )