paula.testing: catch import exception
[paula.git] / paula.examples / setup.py
blobb9264d1a4c13b6758836becaee59b0eae6928563
1 from setuptools import setup, find_packages
2 import os
4 version = '0.60'
6 setup(name='paula.examples',
7 version=version,
8 description="Paula example content types",
9 long_description=open("README.txt").read() + "\n" +
10 open(os.path.join("docs", "HISTORY.txt")).read(),
11 # Get more strings from http://www.python.org/pypi?%3Aaction=list_classifiers
12 classifiers = [
13 'Development Status :: 2 - Pre-Alpha',
14 'Environment :: Web Environment',
15 'Intended Audience :: Developers',
16 'Programming Language :: Python',
17 'Natural Language :: English',
18 'Operating System :: OS Independent',
19 'Topic :: Internet :: WWW/HTTP',
20 'Framework :: Zope3'],
21 keywords='',
22 author='Florian Friesdorf',
23 author_email='flo@chaoflow.net',
24 url='https://chaoflow.net/projects/gsoc2008/z3membrane-ldap',
25 license='AGPL',
26 packages = find_packages('src'),
27 package_dir = {'': 'src'},
28 namespace_packages=['paula'],
29 include_package_data=True,
30 zip_safe=False,
31 install_requires=[
32 'setuptools',
33 # -*- Extra requirements: -*-
34 'zope.component',
35 'zope.interface',
36 'zope.schema',
37 'paula.authutil>=0.59',
38 'paula.proputil>=0.59',
40 extras_require=dict(
41 test = [
42 'paula.testing>=0.59',
45 entry_points="""
46 # -*- Entry points: -*-
47 """,