2009-05-11 18:52:16 +02:00
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
2010-11-10 11:06:20 +01:00
|
|
|
version = '1.0b12jarn-unicode'
|
2009-05-11 18:52:16 +02:00
|
|
|
|
|
|
|
setup(name='plone.app.discussion',
|
|
|
|
version=version,
|
|
|
|
description="Enhanced discussion support for Plone",
|
|
|
|
long_description=open("README.txt").read() + "\n" +
|
2010-01-28 16:33:50 +01:00
|
|
|
open("CHANGES.txt").read(),
|
2009-05-11 18:52:16 +02:00
|
|
|
classifiers=[
|
|
|
|
"Framework :: Plone",
|
|
|
|
"Programming Language :: Python",
|
|
|
|
],
|
2010-04-04 19:26:09 +02:00
|
|
|
keywords='plone discussion',
|
2010-06-02 12:33:47 +02:00
|
|
|
author='Timo Stollenwerk - Plone Foundation',
|
|
|
|
author_email='plone-developers@lists.sourceforge.net',
|
2009-05-11 18:52:16 +02:00
|
|
|
url='http://pypi.python.org/pypi/plone.app.discussion',
|
|
|
|
license='GPL',
|
|
|
|
packages=find_packages(exclude=['ez_setup']),
|
|
|
|
namespace_packages=['plone', 'plone.app'],
|
|
|
|
include_package_data=True,
|
|
|
|
zip_safe=False,
|
|
|
|
install_requires=[
|
|
|
|
'setuptools',
|
2009-05-16 06:46:47 +02:00
|
|
|
'collective.autopermission',
|
2009-10-16 12:27:09 +02:00
|
|
|
'collective.monkeypatcher',
|
2010-01-28 14:23:58 +01:00
|
|
|
'plone.app.layout',
|
2009-06-02 23:20:53 +02:00
|
|
|
'plone.app.registry',
|
2010-01-22 17:30:51 +01:00
|
|
|
'plone.app.z3cform',
|
2009-05-18 16:16:48 +02:00
|
|
|
'plone.indexer',
|
2009-06-02 23:20:53 +02:00
|
|
|
'plone.registry',
|
2010-02-16 21:35:27 +01:00
|
|
|
'plone.z3cform',
|
2009-05-18 16:16:48 +02:00
|
|
|
'ZODB3',
|
|
|
|
'zope.interface',
|
|
|
|
'zope.component',
|
|
|
|
'zope.annotation',
|
|
|
|
'zope.event',
|
2009-10-16 02:42:08 +02:00
|
|
|
'zope.container',
|
|
|
|
'zope.lifecycleevent',
|
|
|
|
'zope.site',
|
2010-11-02 11:38:38 +01:00
|
|
|
'z3c.form>=2.3.3',
|
2009-05-11 18:52:16 +02:00
|
|
|
],
|
2010-09-28 18:35:45 +02:00
|
|
|
extras_require = {
|
|
|
|
'test': [
|
|
|
|
'plone.app.testing',
|
|
|
|
'interlude',
|
|
|
|
]
|
|
|
|
},
|
2009-05-11 18:52:16 +02:00
|
|
|
entry_points="""
|
2009-05-18 16:16:48 +02:00
|
|
|
[z3c.autoinclude.plugin]
|
|
|
|
target = plone
|
2009-05-11 18:52:16 +02:00
|
|
|
""",
|
|
|
|
)
|