forked from plone/Products.CMFPlone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
150 lines (148 loc) · 4.46 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
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
from setuptools import setup
from setuptools import find_packages
version = '5.0b3.dev0'
setup(
name='Products.CMFPlone',
version=version,
description="The Plone Content Management System (core)",
long_description=open("README.rst").read() + "\n" +
open("CHANGES.rst").read(),
classifiers=[
"Environment :: Web Environment",
"Framework :: Plone",
"Framework :: Plone :: 5.0",
"Framework :: Zope2",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
],
keywords='Plone CMF python Zope',
author='Plone Foundation',
author_email='[email protected]',
url='http://plone.org/',
license='GPL version 2',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['Products'],
include_package_data=True,
zip_safe=False,
extras_require=dict(
archetypes=[
'Products.ATContentTypes',
],
test=[
'lxml',
'plone.app.robotframework',
'plone.app.testing',
'zope.globalrequest',
'zope.testing',
]
),
install_requires=[
'setuptools',
'Acquisition',
'DateTime',
'ExtensionClass',
'Pillow',
'Products.CMFCore',
'Products.CMFDiffTool',
'Products.CMFDynamicViewFTI',
'Products.CMFEditions',
'Products.CMFQuickInstallerTool',
'Products.CMFUid',
'Products.DCWorkflow',
'Products.ExtendedPathIndex',
'Products.ExternalEditor',
'Products.GenericSetup >=1.4',
'Products.MimetypesRegistry',
'Products.PasswordResetTool',
'Products.PlacelessTranslationService',
# 'Products.PloneLanguageTool',
'Products.PlonePAS',
'Products.PluggableAuthService',
'Products.PluginRegistry',
'Products.PortalTransforms',
'Products.ResourceRegistries',
'Products.contentmigration',
'Products.statusmessages',
'ZODB3',
'Zope2 > 2.13.0',
'borg.localrole',
'cssmin',
'five.customerize',
'five.localsitemanager',
'five.pt',
'mockup',
'plone.app.content',
'plone.app.contentlisting',
'plone.app.contentmenu >= 1.1.6dev-r22380',
'plone.app.contentrules',
'plone.app.contenttypes',
'plone.app.controlpanel',
'plone.app.customerize',
'plone.app.dexterity',
'plone.app.discussion',
'plone.app.folder',
'plone.app.i18n',
'plone.app.multilingual',
'plone.app.layout >=1.1.7dev-r23744',
'plone.app.linkintegrity >=1.0.3',
'plone.app.locales',
'plone.app.portlets',
'plone.app.redirector',
'plone.app.registry',
'plone.app.theming',
'plone.app.users',
'plone.app.uuid',
'plone.app.viewletmanager',
'plone.app.vocabularies',
'plone.app.widgets',
'plone.app.workflow',
'plone.batching',
'plone.browserlayer >= 1.0rc4',
'plone.contentrules',
'plone.i18n',
'plone.indexer',
'plone.intelligenttext',
'plone.locking',
'plone.memoize',
'plone.outputfilters',
'plone.portlet.collection',
'plone.portlet.static',
'plone.portlets',
'plone.protect >= 3.0.0a1',
'plone.registry',
'plone.schema',
'plone.session',
'plone.theme',
'plonetheme.barceloneta',
'slimit',
'transaction',
'z3c.autoinclude',
'zope.app.locales >= 3.6.0',
'zope.cachedescriptors',
'zope.component',
'zope.container',
'zope.deferredimport',
'zope.deprecation',
'zope.dottedname',
'zope.event',
'zope.i18n',
'zope.i18nmessageid',
'zope.interface',
'zope.location',
'zope.pagetemplate',
'zope.publisher',
'zope.site',
'zope.structuredtext',
'zope.tal',
'zope.tales',
'zope.traversing',
],
entry_points="""\
[console_scripts]
plone-generate-gruntfile = Products.CMFPlone._scripts.generate_gruntfile:main
plone-compile-resources = Products.CMFPlone._scripts.compile_resources:main
"""
)