forked from plone/plone.app.contentmenu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
57 lines (56 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
# -*- coding: utf-8 -*-
from setuptools import find_packages
from setuptools import setup
version = '2.1.7.dev0'
long_description = open("README.rst").read() + "\n"
long_description += open("CHANGES.rst").read()
setup(
name='plone.app.contentmenu',
version=version,
description="Plone's content menu implementation",
long_description=long_description,
classifiers=[
"Environment :: Web Environment",
"Framework :: Plone",
"Framework :: Plone :: 5.0",
"Framework :: Zope2",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
],
keywords='plone contentmenu menu',
author='Plone Foundation',
author_email='[email protected]',
url='http://pypi.python.org/pypi/plone.app.contentmenu',
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.testing',
'plone.app.contenttypes',
]
),
install_requires=[
'setuptools',
'plone.locking',
'plone.memoize',
'plone.app.content >=2.0a3',
'zope.browsermenu',
'zope.component',
'zope.contentprovider',
'zope.interface',
'zope.i18n',
'zope.i18nmessageid',
'zope.publisher',
'Acquisition',
'Products.CMFCore',
'Products.CMFDynamicViewFTI',
'Products.CMFPlone',
'plone.protect >= 3.0.0a1',
'Zope2',
],
)