2014-03-25 16:59:20 +01:00
|
|
|
from setuptools import find_packages
|
|
|
|
from setuptools import setup
|
|
|
|
|
2015-05-04 22:05:12 +02:00
|
|
|
version = '2.4.2'
|
2009-05-11 18:52:16 +02:00
|
|
|
|
2010-12-15 21:39:55 +01:00
|
|
|
install_requires = [
|
|
|
|
'setuptools',
|
|
|
|
'collective.monkeypatcher',
|
|
|
|
'plone.app.layout',
|
|
|
|
'plone.app.registry',
|
2011-04-22 09:16:14 +02:00
|
|
|
'plone.app.uuid',
|
2010-12-15 21:39:55 +01:00
|
|
|
'plone.app.z3cform',
|
|
|
|
'plone.indexer',
|
|
|
|
'plone.registry',
|
|
|
|
'plone.z3cform',
|
2012-05-29 11:27:59 +02:00
|
|
|
'Products.CMFPlone',
|
2010-12-15 21:39:55 +01:00
|
|
|
'ZODB3',
|
|
|
|
'zope.interface',
|
|
|
|
'zope.component',
|
|
|
|
'zope.annotation',
|
|
|
|
'zope.event',
|
|
|
|
'zope.container',
|
|
|
|
'zope.lifecycleevent',
|
|
|
|
'zope.site',
|
|
|
|
'z3c.form>=2.3.3',
|
2012-11-16 12:09:40 +01:00
|
|
|
]
|
2010-12-15 21:39:55 +01:00
|
|
|
|
2009-05-11 18:52:16 +02:00
|
|
|
setup(name='plone.app.discussion',
|
|
|
|
version=version,
|
|
|
|
description="Enhanced discussion support for Plone",
|
2011-12-23 17:01:13 +01:00
|
|
|
long_description=open("README.rst").read() + "\n" +
|
2013-08-20 14:34:13 +02:00
|
|
|
open("CHANGES.rst").read(),
|
2009-05-11 18:52:16 +02:00
|
|
|
classifiers=[
|
2012-11-16 12:09:40 +01:00
|
|
|
"Framework :: Plone",
|
|
|
|
"Framework :: Plone :: 3.3",
|
|
|
|
"Framework :: Plone :: 4.0",
|
|
|
|
"Framework :: Plone :: 4.1",
|
|
|
|
"Framework :: Plone :: 4.2",
|
|
|
|
"Framework :: Plone :: 4.3",
|
|
|
|
"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,
|
2010-12-15 21:39:55 +01:00
|
|
|
install_requires=install_requires,
|
2012-03-15 13:01:38 +01:00
|
|
|
extras_require={
|
2010-09-28 18:35:45 +02:00
|
|
|
'test': [
|
|
|
|
'plone.app.testing',
|
2014-05-12 19:20:18 +02:00
|
|
|
'plone.stringinterp',
|
|
|
|
'plone.contentrules',
|
|
|
|
'plone.app.contentrules',
|
2014-03-23 17:46:53 +01:00
|
|
|
'plone.app.contenttypes[test]',
|
2014-09-20 14:08:50 +02:00
|
|
|
'plone.app.robotframework[ride,reload]',
|
2010-09-28 18:35:45 +02:00
|
|
|
]
|
2012-03-15 13:01:38 +01:00
|
|
|
},
|
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
|
|
|
""",
|
|
|
|
)
|
2015-02-13 14:57:30 +01:00
|
|
|
|