forked from plone/plone.app.event
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
117 lines (112 loc) · 3.26 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
from setuptools import setup
from setuptools import find_packages
import os
version = '1.0.3.dev'
setup(
name='plone.app.event',
version=version,
description="The Plone calendar framework",
long_description="%s%s%s%s" % (
open("README.rst").read() + "\n",
open(os.path.join('docs', 'installation.rst')).read() + "\n",
open(os.path.join('docs', 'contributors.rst')).read() + '\n',
open("CHANGES.rst").read(),
),
classifiers=[
"Framework :: Plone",
"Programming Language :: Python",
],
keywords='plone event',
author='Plone Foundation',
author_email='plone-developers@lists.sourceforge.net',
url='https://github.com/plone/plone.app.event',
license='GPL',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['plone', 'plone.app'],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
# -*- Extra requirements: -*-
'Acquisition',
'DateTime',
'Products.CMFCore',
'Products.CMFPlone',
'Products.DateRecurringIndex',
'Products.GenericSetup',
'Products.ZCatalog',
'Products.statusmessages',
'Zope2',
'collective.elephantvocabulary',
'icalendar',
'plone.app.contentlisting',
'plone.app.imaging',
'plone.app.layout',
'plone.app.portlets>=2.4.0',
'plone.app.registry',
'plone.app.vocabularies',
'plone.browserlayer',
'plone.event>=1.0',
'plone.formwidget.datetime',
'plone.formwidget.recurrence',
'plone.formwidget.namedfile',
'plone.memoize',
'plone.namedfile',
'plone.portlets',
'plone.registry',
'plone.uuid',
'plone.z3cform',
'pytz',
'transaction',
'z3c.form',
'zope.annotation',
'zope.component',
'zope.container',
'zope.contentprovider',
'zope.formlib',
'zope.i18nmessageid',
'zope.interface',
'zope.lifecycleevent',
'zope.publisher',
'zope.schema',
],
extras_require={
'archetypes': [
'AccessControl',
'Products.ATContentTypes',
'Products.Archetypes',
'Products.contentmigration',
'plone.formwidget.datetime [archetypes]',
'plone.formwidget.recurrence [archetypes]',
],
'dexterity': [
'plone.app.dexterity',
'plone.app.textfield',
'plone.autoform>=1.4',
'plone.behavior',
'plone.dexterity',
'plone.formwidget.datetime [z3cform]',
'plone.formwidget.recurrence [z3cform]',
'plone.indexer',
'plone.supermodel',
],
'ploneintegration': [
'plone.app.event [archetypes]',
'z3c.unconfigure',
],
'test': [
'mock',
'plone.app.collection',
'plone.app.contenttypes',
'plone.app.event [archetypes, dexterity, ploneintegration]',
'plone.app.testing',
'plone.testing',
'transaction',
'zope.event',
]
},
entry_points="""
[z3c.autoinclude.plugin]
target = plone
"""
)