forked from Kotti/Kotti
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
103 lines (96 loc) · 3.21 KB
/
setup.py
File metadata and controls
103 lines (96 loc) · 3.21 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
import os
import sys
from setuptools import setup
from setuptools import find_packages
here = os.path.abspath(os.path.dirname(__file__))
try:
README = open(os.path.join(here, 'README.rst')).read()
AUTHORS = open(os.path.join(here, 'AUTHORS.txt')).read()
CHANGES = open(os.path.join(here, 'CHANGES.txt')).read()
except IOError:
README = AUTHORS = CHANGES = ''
install_requires = [
'Babel',
'Chameleon>=2.7.4', # Fixes error when raising HTTPFound
'colander>=0.9.3',
'deform>=0.9.4', # deform_bootstrap (needs fixing there)
'deform_bootstrap>=0.1', # checked_input widget
'formencode',
'html2text',
'js.bootstrap',
'js.jquery',
'js.jquery_timepicker_addon',
'js.jqueryui',
'js.jqueryui_tagit',
'kotti_tinymce>=0.2.2',
'lingua>=1.3',
'Pillow', # indirect dependency of plone.scale (that doesn't declare this dependency itself)
'plone.i18n<2.0', # >= 2.0 adds a huge number of dependencies
'plone.scale', # needed for image resizing capabilities
'py-bcrypt',
'pyramid>=1.3', # needed for kotti_tinymce
'pyramid_beaker',
'pyramid_debugtoolbar',
'pyramid_deform>=0.2a3', # language and template path config includeme
'pyramid_mailer',
'pyramid_tm',
'repoze.lru',
'sqlalchemy>=0.7.6', # avoid "Table 'local_groups' is already defined" error
'transaction>=1.1.0', # ask c-neumann :-)
'waitress',
'zope.deprecation',
'zope.sqlalchemy',
]
tests_require = [
'WebTest',
'mock',
'pytest',
'pytest-cov',
'pytest-pep8',
'pytest-xdist',
'wsgi_intercept',
'zope.testbrowser',
]
if sys.version_info[:3] < (2, 7, 0):
install_requires.append('ordereddict')
setup(name='Kotti',
version='0.7dev4',
description="Kotti is a high-level, 'Pythonic' web application framework. It includes a small and extensible CMS application called the Kotti CMS.",
long_description='\n\n'.join([README, AUTHORS, CHANGES]),
classifiers=[
"Programming Language :: Python",
"Framework :: Pylons",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
"License :: Repoze Public License",
],
author='Kotti developers',
author_email='kotti@googlegroups.com',
url='https://github.com/Pylons/Kotti',
keywords='kotti web cms wcms pylons pyramid sqlalchemy bootstrap',
license="BSD-derived (http://www.repoze.org/LICENSE.txt)",
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=install_requires,
tests_require=tests_require,
dependency_links=[
],
entry_points="""\
[paste.app_factory]
main = kotti:main
[fanstatic.libraries]
kotti = kotti.static:lib_kotti
deform = kotti.static:lib_deform
deform_bootstrap = kotti.static:lib_deform_bootstrap
""",
extras_require={
'testing': tests_require,
},
message_extractors={'kotti': [
('**.py', 'lingua_python', None),
('**.zcml', 'lingua_xml', None),
('**.pt', 'lingua_xml', None),
]},
)