-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
63 lines (60 loc) · 1.74 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
from setuptools import setup, find_packages
version = '0.9.dev0'
setup(
name='uu.formlibrary',
version=version,
description="Plone add-on for form definitions and form instances.",
long_description=(
open("README.txt").read() + "\n" +
open("CHANGES.txt").read()
),
classifiers=[
"Environment :: Web Environment",
"Programming Language :: Python",
"Framework :: Plone",
"Framework :: Zope2",
"License :: OSI Approved :: GNU General Public License (GPL)",
],
keywords='',
author='Sean Upton',
author_email='[email protected]',
url='http://github.com/upiq',
license='GPL',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['uu'],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'zope.schema>=3.8.0',
'collective.z3cform.datagridfield>=0.9',
'collective.z3cform.datetimewidget',
'plone.app.dexterity',
'plone.app.widgets<2.0',
'plone.uuid',
'plone.alterego',
'plone.supermodel',
'plone.synchronize',
'plone.schemaeditor>=1.0',
'plone.app.linkintegrity',
'plone.app.textfield',
'plone.app.widgets<2.0',
'zope.globalrequest',
'zope.app.testing', # for z3c.form.testing requirement
'Products.CMFPlone',
'uu.workflows',
'uu.record',
'uu.dynamicschema',
'uu.retrieval',
'collective.computedfield',
# -*- Extra requirements: -*-
],
extras_require = {
'test': ['plone.app.testing>=4.0'],
},
entry_points="""
# -*- Entry points: -*-
[z3c.autoinclude.plugin]
target = plone
""",
)