72 lines
2.0 KiB
Python
72 lines
2.0 KiB
Python
# encoding: utf-8
|
|
|
|
from setuptools import find_packages
|
|
from setuptools import setup
|
|
|
|
|
|
version = '3.0.7.dev0'
|
|
|
|
install_requires = [
|
|
'setuptools',
|
|
'plone.app.layout',
|
|
'plone.app.registry',
|
|
'plone.app.uuid',
|
|
'plone.app.z3cform',
|
|
'plone.indexer',
|
|
'plone.registry',
|
|
'plone.z3cform',
|
|
'Products.CMFPlone',
|
|
'six',
|
|
'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',
|
|
'Framework :: Plone :: 5.2',
|
|
'License :: OSI Approved :: GNU General Public License (GPL)',
|
|
'Programming Language :: Python',
|
|
'Programming Language :: Python :: 2.7',
|
|
'Programming Language :: Python :: 3.6',
|
|
'Programming Language :: Python :: 3.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',
|
|
],
|
|
},
|
|
entry_points="""
|
|
[z3c.autoinclude.plugin]
|
|
target = plone
|
|
""",
|
|
)
|