test commit
[voodoo.git] / vudo.browser / setup.py
bloba594fee5e159539c272a3c5e7fb10733e1c19f5d
1 ##############################################################################
3 # Copyright (c) 2008 Zope Corporation and Contributors.
4 # All Rights Reserved.
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.
13 ##############################################################################
15 import os
16 from setuptools import setup, find_packages, Extension
18 def read(*rnames):
19 return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
21 setup(name='vudo.browser',
22 version = '0.1',
23 description='Interactive client-side resource browser',
24 long_description=read('README.txt'),
25 keywords = "zope3 vudo browser",
26 classifiers = [
27 'Development Status :: 4 - Beta',
28 'Environment :: Web Environment',
29 'Intended Audience :: Developers',
30 'License :: OSI Approved :: Zope Public License',
31 'Programming Language :: Python',
32 'Natural Language :: English',
33 'Operating System :: OS Independent',
34 'Topic :: Internet :: WWW/HTTP',
35 'Framework :: Zope3'],
36 license='ZPL 2.1',
37 packages=find_packages('src'),
38 package_dir = {'': 'src'},
39 namespace_packages=['vudo', ],
40 install_requires=['setuptools',
41 'WebOb',
42 'repoze.bfg',
43 'repoze.bfg.httprequest',
44 'zope.dublincore',
45 'jsonlib',
46 ],
47 include_package_data = True,
48 zip_safe = False,