1 from setuptools
import setup
, find_packages
6 setup(name
='paula.suite',
8 description
="Suite of Paula's zope part",
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
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'],
22 author
='Florian Friesdorf',
23 author_email
='flo@chaoflow.net',
24 url
='https://chaoflow.net/projects/gsoc2008/z3membrane-ldap',
26 packages
= find_packages('src'),
27 package_dir
= {'': 'src'},
28 namespace_packages
=['paula'],
29 include_package_data
=True,
33 # -*- Extra requirements: -*-
36 'paula.authentication>=0.59',
37 'paula.authutil>=0.59',
38 'paula.properties>=0.59',
39 'paula.proputil>=0.59',
41 'paula.grouputil>=0.59',
45 'paula.testing>=0.59',
46 'paula.examples>=0.59',
50 # -*- Entry points: -*-