forked from plone/Products.statusmessages
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (38 loc) · 1.26 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
from setuptools import setup, find_packages
version = '4.0.1'
setup(name='Products.statusmessages',
version=version,
description="statusmessages provides an easy way of handling "
"internationalized status messages managed via an "
"BrowserRequest adapter storing status messages in "
"client-side cookies.",
long_description=open("README.txt").read() + "\n" +
open("CHANGES.txt").read(),
classifiers=[
"Framework :: Plone",
"Framework :: Zope2",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
],
keywords='Zope CMF Plone status messages i18n',
author='Hanno Schlichting',
author_email='[email protected]',
url='http://pypi.python.org/pypi/Products.statusmessages',
license='BSD',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['Products'],
include_package_data=True,
zip_safe=False,
extras_require=dict(
test=[
'zope.component',
'Zope2',
]
),
install_requires=[
'setuptools',
'zope.annotation',
'zope.i18n',
'zope.interface',
],
)