~ztk-steering-group/zope.componentvocabulary/trunk

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: srichter
  • Date: 2013-02-25 01:55:35 UTC
  • Revision ID: svn-v4:62d5b8a3-27da-0310-9561-8e5933582275:zope.componentvocabulary/trunk:129763
Moved to GitHub.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
##############################################################################
2
 
#
3
 
# Copyright (c) 2006 Zope Foundation 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.catalog package
15
 
"""
16
 
import os
17
 
from setuptools import setup, find_packages
18
 
 
19
 
 
20
 
def read(*rnames):
21
 
    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
22
 
 
23
 
 
24
 
setup(name='zope.componentvocabulary',
25
 
      version='2.0.0dev',
26
 
      author='Zope Foundation and Contributors',
27
 
      author_email='zope-dev@zope.org',
28
 
      description='Component vocabularies',
29
 
      long_description=(
30
 
          read('README.txt')
31
 
          + '\n\n' +
32
 
          read('CHANGES.txt')
33
 
          ),
34
 
      keywords="zope component architecture vocabulary",
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
 
          'Programming Language :: Python :: 2',
42
 
          'Programming Language :: Python :: 2.6',
43
 
          'Programming Language :: Python :: 2.7',
44
 
          'Natural Language :: English',
45
 
          'Operating System :: OS Independent',
46
 
          'Topic :: Internet :: WWW/HTTP',
47
 
          'Framework :: Zope3'],
48
 
      url='http://pypi.python.org/pypi/zope.componentvocabulary',
49
 
      license='ZPL 2.1',
50
 
      packages=find_packages('src'),
51
 
      package_dir={'': 'src'},
52
 
      namespace_packages=['zope'],
53
 
      install_requires=[
54
 
          'setuptools',
55
 
          'zope.component',
56
 
          'zope.i18nmessageid',
57
 
          'zope.interface',
58
 
          'zope.schema',
59
 
          'zope.security',
60
 
          ],
61
 
      extras_require=dict(
62
 
          test=[
63
 
              'zope.component [test]',
64
 
              'zope.configuration',
65
 
              ]),
66
 
      include_package_data=True,
67
 
      zip_safe=False,
68
 
      )