-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathsetup.py
More file actions
85 lines (78 loc) · 2.29 KB
/
Copy pathsetup.py
File metadata and controls
85 lines (78 loc) · 2.29 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
85
import os
from setuptools import find_packages
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.rst')).read()
CHANGES = open(os.path.join(here, 'CHANGES.txt')).read()
install_requires = [
# Kotti with ``kotti_image`` add on is required
'Kotti>=1.3',
],
# copied from Kotti, necessary because extras are not supported in
# ``extras_require``. See https://github.com/pypa/pip/issues/3189
tests_require = [
'kotti_image>=1.0.1',
'WebTest',
'mock',
'Pillow', # thumbnail filter in depot tween tests
'py>=1.4.29',
'pyquery',
'pytest>=3.0.0',
'pytest-cov',
'pytest-pep8!=1.0.3',
'pytest-travis-fold',
'pytest-virtualenv',
'pytest-xdist',
'tox',
'zope.testbrowser>=5.0.0',
]
# copied from Kotti, necessary because extras are not supported in
# ``extras_require``. See https://github.com/pypa/pip/issues/3189
development_requires = [
'check-manifest',
'pipdeptree',
'pyramid_debugtoolbar',
]
setup_requires = [
'setuptools_git>=0.3',
]
setup(
name='kotti_tinymce',
version='0.7.2.dev0',
description="TinyMCE plugins for Kotti",
long_description=README + '\n\n' + CHANGES,
classifiers=[
"Programming Language :: Python",
"Framework :: Pylons",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
"License :: OSI Approved :: MIT License",
],
author='Andreas Kaiser',
author_email='disko@binary-punks.com',
url='https://github.com/Kotti/kotti_tinymce',
keywords='tinymce image browser kotti cms pylons pyramid',
license="BSD",
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=install_requires,
setup_requires=setup_requires,
tests_require=tests_require,
extras_require={
'testing': tests_require,
'development': development_requires,
},
entry_points={
'fanstatic.libraries': [
"kotti_tinymce = kotti_tinymce:library",
],
},
message_extractors={
"kotti_tinymce": [
("**.py", "lingua_python", None),
("**.pt", "lingua_xml", None),
],
},
)