2017-07-28 17:58:35 +02:00
|
|
|
# encoding: utf-8
|
|
|
|
|
2014-03-25 16:59:20 +01:00
|
|
|
from setuptools import find_packages
|
|
|
|
from setuptools import setup
|
|
|
|
|
2017-07-28 17:58:35 +02:00
|
|
|
|
2022-04-04 11:13:31 +02:00
|
|
|
version = '4.0.0a6.dev0'
|
2009-05-11 18:52:16 +02:00
|
|
|
|
2010-12-15 21:39:55 +01:00
|
|
|
install_requires = [
|
|
|
|
'setuptools',
|
|
|
|
'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',
|
2018-01-25 13:04:11 +01:00
|
|
|
'six',
|
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,
|
2017-07-28 17:58:35 +02:00
|
|
|
description='Enhanced discussion support for Plone',
|
|
|
|
long_description=open('README.rst').read() + '\n' +
|
|
|
|
open('CHANGES.rst').read(),
|
2009-05-11 18:52:16 +02:00
|
|
|
classifiers=[
|
2021-02-15 15:34:19 +01:00
|
|
|
"Development Status :: 5 - Production/Stable",
|
2021-02-17 18:58:20 +01:00
|
|
|
"Environment :: Web Environment",
|
2021-02-15 15:34:19 +01:00
|
|
|
"Framework :: Plone",
|
|
|
|
"Framework :: Plone :: 6.0",
|
|
|
|
"Framework :: Plone :: Core",
|
2021-02-17 18:58:20 +01:00
|
|
|
"Framework :: Zope :: 5",
|
2021-02-15 15:34:19 +01:00
|
|
|
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
|
2021-02-17 18:58:20 +01:00
|
|
|
"Operating System :: OS Independent",
|
2021-02-15 15:34:19 +01:00
|
|
|
"Programming Language :: Python",
|
|
|
|
"Programming Language :: Python :: 3.7",
|
|
|
|
"Programming Language :: Python :: 3.8",
|
2021-09-15 15:36:30 +02:00
|
|
|
"Programming Language :: Python :: 3.9",
|
2012-11-16 12:09:40 +01:00
|
|
|
],
|
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',
|
2018-10-01 15:34:06 +02:00
|
|
|
url='https://pypi.org/project/plone.app.discussion',
|
2009-05-11 18:52:16 +02:00
|
|
|
license='GPL',
|
2018-10-01 17:55:09 +02:00
|
|
|
packages=find_packages(),
|
2009-05-11 18:52:16 +02:00
|
|
|
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]',
|
2017-07-14 00:25:31 +02:00
|
|
|
'plone.app.robotframework',
|
2017-07-28 17:58:35 +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
|
|
|
""",
|
|
|
|
)
|