afa962bb11
[ci skip]
65 lines
1.7 KiB
Python
65 lines
1.7 KiB
Python
from setuptools import find_packages
|
|
from setuptools import setup
|
|
|
|
version = '2.4.17'
|
|
|
|
install_requires = [
|
|
'setuptools',
|
|
'plone.app.layout',
|
|
'plone.app.registry',
|
|
'plone.app.uuid',
|
|
'plone.app.z3cform',
|
|
'plone.indexer',
|
|
'plone.registry',
|
|
'plone.z3cform',
|
|
'Products.CMFPlone',
|
|
'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.rst").read() + "\n" +
|
|
open("CHANGES.rst").read(),
|
|
classifiers=[
|
|
"Framework :: Plone",
|
|
"Framework :: Plone :: 5.0",
|
|
"Framework :: Plone :: 5.1",
|
|
"Programming Language :: Python",
|
|
"Programming Language :: Python :: 2.7",
|
|
],
|
|
keywords='plone discussion',
|
|
author='Timo Stollenwerk - Plone Foundation',
|
|
author_email='plone-developers@lists.sourceforge.net',
|
|
url='https://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',
|
|
'plone.stringinterp',
|
|
'plone.contentrules',
|
|
'plone.app.contentrules',
|
|
'plone.app.contenttypes[test]',
|
|
'plone.app.robotframework[ride,reload]',
|
|
]
|
|
},
|
|
entry_points="""
|
|
[z3c.autoinclude.plugin]
|
|
target = plone
|
|
""",
|
|
)
|
|
|