1 ##############################################################################
3 # Copyright (c) 2008 Zope Corporation and Contributors.
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 ##############################################################################
16 from setuptools
import setup
, find_packages
, Extension
19 return open(os
.path
.join(os
.path
.dirname(__file__
), *rnames
)).read()
21 setup(name
='vudo.browser',
23 description
='Interactive client-side resource browser',
24 long_description
=read('README.txt'),
25 keywords
= "zope3 vudo browser",
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'],
37 packages
=find_packages('src'),
38 package_dir
= {'': 'src'},
39 namespace_packages
=['vudo', ],
40 install_requires
=['setuptools',
43 'repoze.bfg.httprequest',
47 include_package_data
= True,