paula.pasplugins: implementation of many interface - unclean working code
[paula.git] / paula.properties / setup.py
blob3c035c18264de49c612777691c02bddc1da49980
1 from setuptools import setup, find_packages
2 import os
4 version = '0.60'
6 setup(name='paula.properties',
7 version=version,
8 description="Paula subscriber to set PAU principal properties",
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.app.authentication',
35 'zope.component',
36 'zope.interface',
37 'zope.schema',
39 extras_require=dict(
40 test = [
41 'paula.testing>=0.59',
44 entry_points="""
45 # -*- Entry points: -*-
46 """,