-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
95 lines (92 loc) · 2.56 KB
/
setup.py
File metadata and controls
95 lines (92 loc) · 2.56 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
# -*- coding: utf-8 -*-
from setuptools import find_packages
from setuptools import setup
import os
version = '10.0.28'
widgets_require = [
'plone.app.widgets'
]
test_require = [
'plone.app.testing',
'plone.testing',
'Products.BTreeFolder2',
'transaction',
'zExceptions',
'zope.configuration',
]
setup(
name='plone.app.blocks',
version=version,
description="Implements the in-Plone blocks rendering process",
long_description='%s\n%s\n%s' % (
open("README.rst").read(),
open(os.path.join("plone", "app", "blocks",
"tests", "rendering.rst")).read(),
open("CHANGES.rst").read(),
),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
"Framework :: Plone",
'Framework :: Plone :: 4.3',
'Framework :: Plone :: 5.0',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
"Programming Language :: Python",
'Programming Language :: Python :: 2.7',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords='plone blocks deco',
author='Martin Aspeli, Laurence Rowe',
author_email='optilude@gmail.com',
url='https://github.com/plone/plone.app.blocks',
packages=find_packages(),
namespace_packages=['plone', 'plone.app'],
include_package_data=True,
zip_safe=False,
install_requires=[
'AccessControl',
'Acquisition',
'diazo',
'lxml',
'plone.app.layout',
'plone.app.registry',
'plone.autoform',
'plone.behavior',
'plone.dexterity',
'plone.memoize',
'plone.outputfilters',
'plone.registry',
'plone.resource',
'plone.subrequest',
'plone.supermodel',
'plone.tiles',
'plone.transformchain',
'plone.uuid',
'Products.CMFCore',
'Products.CMFPlone >= 4.2',
'repoze.xmliter',
'setuptools',
'z3c.form',
'zope.annotation',
'zope.component',
'zope.globalrequest',
'zope.i18nmessageid',
'zope.interface',
'zope.publisher',
'zope.schema',
'zope.security',
'zope.site',
'zope.traversing',
'Zope2',
],
extras_require={
'widgets': widgets_require,
'test': test_require,
},
entry_points="""
[z3c.autoinclude.plugin]
target = plone
""",
)