-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
72 lines (67 loc) · 2.11 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# -*- coding: utf-8 -*-
# Copyright (c) 2002-2013 Infrae. All rights reserved.
# See also LICENSE.txt
from setuptools import setup, find_packages
import os
version = '3.0.4dev'
tests_require = [
'Products.Silva [test]',
]
setup(name='silva.core.editor',
version=version,
description="Support for the WYSIWYG editor CKEditor in the Silva CMS",
long_description=open("README.txt").read() + "\n" +
open(os.path.join("docs", "HISTORY.txt")).read(),
classifiers=[
"Framework :: Zope2",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords='silva core editor wysiwyg ckeditor',
author='Infrae',
author_email='[email protected]',
license='BSD',
package_dir={'': 'src'},
packages=find_packages('src'),
namespace_packages=['silva', 'silva.core'],
url='https://github.com/silvacms/silva.core.editor',
include_package_data=True,
zip_safe=False,
install_requires=[
'five.grok',
'infrae.rest',
'js.ckeditor',
'lxml',
'setuptools',
'silva.core.conf',
'silva.core.interfaces',
'silva.core.references',
'silva.core.messages',
'silva.core.services',
'silva.core.views',
'silva.core.xml',
'silva.translations',
'silva.ui',
'tinycss',
'zeam.form.silva',
'zeam.jsontemplate',
'zope.annotation',
'zope.component',
'zope.event',
'zope.interface',
'zope.lifecycleevent',
'zope.schema',
'zope.traversing',
],
tests_require = tests_require,
extras_require = {'test': tests_require},
entry_points="""
[zeam.form.components]
html = silva.core.editor.widgets.text:register
[silva.core.editor.extension]
core = silva.core.editor:extension
[silva.ui.resources]
editor = silva.core.editor.interfaces:ICKEditorSilvaUIResources
""",
)