forked from plone/Products.TinyMCE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
52 lines (47 loc) · 1.53 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
import os
import sys
from setuptools import setup, find_packages
open_relative = lambda *x: open(os.path.join(os.path.dirname(__file__), *x)).read()
if sys.version_info[0] == 2 and sys.version_info[1] < 6:
requires = ['simplejson']
else:
requires = []
setup(name='Products.TinyMCE',
version='1.5.0.dev0',
description="Adds support for TinyMCE, a platform independent web based Javascript HTML WYSIWYG editor, to Plone.",
long_description=open_relative("README.rst"),
classifiers=[
"Framework :: Plone",
"Programming Language :: Python",
],
keywords='editor editors tinymce wysiwyg',
author='Four Digits',
author_email='[email protected]',
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.contenttypes'],
'docs': ['sphinx'],
},
)