add policy and theme products
[zope-bootstrap.git] / src / koehsel.theme / setup.py
1 from setuptools import setup, find_packages
2 import os
3
4 version = '1.0'
5
6 setup(name='koehsel.theme',
7       version=version,
8       description="site theme",
9       long_description=open("README.txt").read() + "\n" +
10                        open(os.path.join("docs", "HISTORY.txt")).read(),
11       # Get more strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
12       classifiers=[
13         "Framework :: Plone",
14         "Programming Language :: Python",
15         ],
16       keywords='web zope plone theme',
17       author='Stefan Bund',
18       author_email='stefan@j32.de',
19       url='http://svn.plone.org/svn/collective/',
20       license='none',
21       packages=find_packages(exclude=['ez_setup']),
22       namespace_packages=['koehsel'],
23       include_package_data=True,
24       zip_safe=False,
25       install_requires=[
26           'setuptools',
27           # -*- Extra requirements: -*-
28       ],
29       entry_points="""
30       # -*- Entry points: -*-
31
32       [z3c.autoinclude.plugin]
33       target = plone
34       """,
35       setup_requires=["PasteScript"],
36       paster_plugins = ["ZopeSkel"],
37       )