forked from plone/plone.app.dexterity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
85 lines (83 loc) · 2.75 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
from setuptools import setup, find_packages
import os
version = '2.0.9.dev0'
long_description = open("README.rst").read() + "\n" + \
open("RELEASE_NOTES.txt").read() + "\n" + \
open(os.path.join("docs", "HISTORY.txt")).read()
setup(name='plone.app.dexterity',
version=version,
description="Dexterity is a content type framework for CMF "
"applications, with particular emphasis on Plone. It can "
"be viewed as an alternative to Archetypes that is more "
"light-weight and modular.",
long_description=long_description,
classifiers=[
"Framework :: Plone",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Development Status :: 5 - Production/Stable",
],
keywords='plone ttw dexterity schema interface',
author='Martin Aspeli, David Glick, et al',
author_email='[email protected]',
url='http://plone.org/products/dexterity',
license='GPL',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['plone', 'plone.app'],
include_package_data=True,
zip_safe=False,
install_requires=[
# Dexterity
'collective.z3cform.datetimewidget >=1.1dev',
'plone.app.textfield',
'plone.behavior>=1.0b5',
'plone.dexterity >= 1.0rc1',
'plone.formwidget.namedfile',
'plone.namedfile[scales] >=1.0b5dev-r36016',
'plone.rfc822',
'plone.schemaeditor >=1.0',
# Plone/Zope core
'lxml',
'plone.app.content',
'plone.app.layout',
'plone.app.uuid',
'plone.app.z3cform>=0.7.2',
'plone.autoform >=1.1dev',
'plone.contentrules',
'plone.portlets',
'plone.supermodel>=1.1dev',
'plone.z3cform>=0.6.0',
'Products.ATContentTypes',
'Products.CMFCore',
'Products.CMFPlone>=4.0b1',
'Products.GenericSetup',
'setuptools',
'Zope2',
'zope.browserpage',
'zope.interface',
'zope.component',
'zope.schema',
'zope.publisher',
'z3c.form>=3.0.0a1',
],
extras_require={
'test': [
'plone.app.testing',
'unittest2'
],
'grok': [
'five.grok',
'plone.directives.dexterity',
'plone.directives.form >=1.1dev',
],
'relations': [
'plone.app.relationfield',
'plone.app.intid',
'z3c.relationfield',
]
},
entry_points="""
[z3c.autoinclude.plugin]
target = plone
""",
)