This repository has been archived by the owner on Apr 10, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 61
/
setup.py
58 lines (54 loc) · 1.78 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
import sys
from setuptools import setup, find_packages
long_description = open("README.rst").read()
long_description += '\n\n'
long_description += open("CHANGES.rst").read()
if sys.version_info[0] == 2 and sys.version_info[1] < 6:
requires = ['simplejson']
else:
requires = []
setup(
name='Products.TinyMCE',
version='1.3.30.dev0',
description=("Adds support for TinyMCE, a platform independent "
"web based Javascript HTML WYSIWYG editor, to Plone."),
long_description=long_description,
classifiers=[
"Framework :: Plone",
"Framework :: Plone :: 4.3",
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
],
keywords='editor editors tinymce wysiwyg',
author='Four Digits',
author_email='rob@fourdigits.nl',
url='http://plone.org/products/tinymce',
license='LGPL',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['Products'],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'plone.app.imaging>=1.0.2',
'plone.outputfilters',
'plone.namedfile',
'plone.app.layout>=2.3.7',
'plone.caching',
'Products.ResourceRegistries',
'zope.app.content',
'zope.schema>=3.5.4',
# depends on *either* elementtree or lxml...
# we can expect one of those in all versions of Plone
] + requires,
extras_require={
'test': ['plone.app.testing',
'zope.testing',
'unittest2',
'Pillow',
'plone.app.dexterity'],
'docs': ['sphinx'],
},
)