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-05-01 23:14:09 +02:00
|
|
|
version = "4.0.0a7.dev0"
|
2009-05-11 18:52:16 +02:00
|
|
|
|
2010-12-15 21:39:55 +01:00
|
|
|
install_requires = [
|
2022-05-01 23:14:09 +02:00
|
|
|
"setuptools",
|
|
|
|
"plone.app.layout",
|
|
|
|
"plone.app.registry",
|
|
|
|
"plone.app.uuid",
|
|
|
|
"plone.app.z3cform",
|
|
|
|
"plone.indexer",
|
|
|
|
"plone.registry",
|
|
|
|
"plone.z3cform",
|
|
|
|
"six",
|
|
|
|
"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
|
|
|
|
2022-05-01 23:14:09 +02:00
|
|
|
setup(
|
|
|
|
name="plone.app.discussion",
|
|
|
|
version=version,
|
|
|
|
description="Enhanced discussion support for Plone",
|
|
|
|
long_description=open("README.rst").read() + "\n" + open("CHANGES.rst").read(),
|
|
|
|
classifiers=[
|
|
|
|
"Development Status :: 5 - Production/Stable",
|
|
|
|
"Environment :: Web Environment",
|
|
|
|
"Framework :: Plone",
|
|
|
|
"Framework :: Plone :: 6.0",
|
|
|
|
"Framework :: Plone :: Core",
|
|
|
|
"Framework :: Zope :: 5",
|
|
|
|
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
|
|
|
|
"Operating System :: OS Independent",
|
|
|
|
"Programming Language :: Python",
|
|
|
|
"Programming Language :: Python :: 3.7",
|
|
|
|
"Programming Language :: Python :: 3.8",
|
|
|
|
"Programming Language :: Python :: 3.9",
|
|
|
|
],
|
|
|
|
keywords="plone discussion",
|
|
|
|
author="Timo Stollenwerk - Plone Foundation",
|
|
|
|
author_email="plone-developers@lists.sourceforge.net",
|
|
|
|
url="https://pypi.org/project/plone.app.discussion",
|
|
|
|
license="GPL",
|
|
|
|
packages=find_packages(),
|
|
|
|
namespace_packages=["plone", "plone.app"],
|
|
|
|
include_package_data=True,
|
|
|
|
zip_safe=False,
|
|
|
|
install_requires=install_requires,
|
|
|
|
extras_require={
|
|
|
|
"test": [
|
|
|
|
"plone.app.testing",
|
|
|
|
"plone.stringinterp",
|
|
|
|
"plone.contentrules",
|
|
|
|
"plone.app.contentrules",
|
|
|
|
"plone.app.contenttypes[test]",
|
|
|
|
"plone.app.robotframework",
|
|
|
|
],
|
|
|
|
},
|
|
|
|
entry_points="""
|
2009-05-18 16:16:48 +02:00
|
|
|
[z3c.autoinclude.plugin]
|
|
|
|
target = plone
|
2009-05-11 18:52:16 +02:00
|
|
|
""",
|
2022-05-01 23:14:09 +02:00
|
|
|
)
|