forked from plone/plone.app.content
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
61 lines (59 loc) · 1.7 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
# -*- coding: utf-8 -*-
from setuptools import find_packages
from setuptools import setup
version = '3.0.18.dev0'
setup(
name='plone.app.content',
version=version,
description="Content Views for Plone",
long_description='\n\n'.join([
open("README.rst").read(),
open("CHANGES.rst").read(),
]),
classifiers=[
"Framework :: Plone",
"Framework :: Plone :: 5.0",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
],
keywords='plone content views viewlet',
author='Plone Foundation',
author_email='[email protected]',
url='https://pypi.python.org/pypi/plone.app.content',
license='GPL version 2',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['plone', 'plone.app'],
include_package_data=True,
zip_safe=False,
extras_require=dict(
test=[
'plone.app.contenttypes',
'plone.app.testing',
]
),
install_requires=[
'Acquisition',
'plone.app.widgets>=2.0.0.dev0',
'plone.batching',
'plone.i18n',
'plone.memoize',
'plone.protect',
'Products.CMFCore>=2.2.0dev',
'Products.CMFDynamicViewFTI', # required for cmf.ModifyViewTemplate
'Products.CMFPlone',
'setuptools',
'zope.component',
'zope.container',
'zope.deferredimport',
'zope.event',
'zope.i18n',
'zope.i18nmessageid',
'zope.interface',
'zope.lifecycleevent',
'zope.publisher',
'zope.schema',
'zope.viewlet',
'Zope2',
],
)