forked from plone/plone.app.event
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
95 lines (93 loc) · 2.92 KB
/
Copy pathsetup.py
File metadata and controls
95 lines (93 loc) · 2.92 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
from setuptools import setup, find_packages
version = '1.0dev'
setup(name='plone.app.event',
version=version,
description="Event content type for plone",
long_description=open("README.rst").read() + "\n" +
open("CHANGES.rst").read(),
# Get more strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
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',
'Zope2',
'collective.elephantvocabulary',
'icalendar>3.2',
'plone.app.layout',
'plone.app.portlets>=2.4.0',
'plone.app.registry',
'plone.app.vocabularies',
'plone.event',
'plone.formwidget.datetime',
'plone.formwidget.recurrence',
'plone.memoize',
'plone.portlets',
'plone.registry',
'plone.uuid',
'plone.z3cform',
'pytz',
'zope.component',
'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]',
'transaction',
],
'dexterity': [
'plone.app.dexterity',
'plone.app.textfield',
'plone.autoform',
'plone.behavior',
'plone.dexterity',
'plone.formwidget.datetime [z3cform]',
'plone.formwidget.recurrence [z3cform]',
'plone.indexer',
'plone.supermodel',
'z3c.form',
],
'ploneintegration': [
'plone.app.event [archetypes]',
'z3c.unconfigure',
],
'test': [
'plone.app.testing',
'plone.testing',
'transaction',
'zope.event',
]
},
entry_points="""
[z3c.autoinclude.plugin]
target = plone
""")