d51101db5f
svn path=/plone.app.discussion/trunk/; revision=50490
56 lines
1.4 KiB
Python
56 lines
1.4 KiB
Python
from setuptools import setup, find_packages
|
|
|
|
version = '2.0.5'
|
|
|
|
install_requires = [
|
|
'setuptools',
|
|
'collective.monkeypatcher',
|
|
'plone.app.layout',
|
|
'plone.app.registry',
|
|
'plone.app.uuid',
|
|
'plone.app.z3cform',
|
|
'plone.indexer',
|
|
'plone.registry',
|
|
'plone.z3cform',
|
|
'ZODB3',
|
|
'zope.interface',
|
|
'zope.component',
|
|
'zope.annotation',
|
|
'zope.event',
|
|
'zope.container',
|
|
'zope.lifecycleevent',
|
|
'zope.site',
|
|
'z3c.form>=2.3.3',
|
|
]
|
|
|
|
setup(name='plone.app.discussion',
|
|
version=version,
|
|
description="Enhanced discussion support for Plone",
|
|
long_description=open("README.txt").read() + "\n" +
|
|
open("CHANGES.txt").read(),
|
|
classifiers=[
|
|
"Framework :: Plone",
|
|
"Programming Language :: Python",
|
|
],
|
|
keywords='plone discussion',
|
|
author='Timo Stollenwerk - Plone Foundation',
|
|
author_email='plone-developers@lists.sourceforge.net',
|
|
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=install_requires,
|
|
extras_require = {
|
|
'test': [
|
|
'plone.app.testing',
|
|
'interlude',
|
|
]
|
|
},
|
|
entry_points="""
|
|
[z3c.autoinclude.plugin]
|
|
target = plone
|
|
""",
|
|
)
|