-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
55 lines (52 loc) · 1.83 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
##############################################################################
#
# Copyright (c) 2013 Zope Foundation and Contributors.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE
#
##############################################################################
from setuptools import setup
from setuptools import find_packages
import os.path
version = open(os.path.join("Products","ZServerViews",
"version.txt")).read().strip()
description = """
Provide infrastructure for plugging views that run directly at the ZServer
thread
""".strip()
setup(name='Products.ZServerViews',
version=version,
description=description,
long_description=open("README.rst").read() + "\n" +
open(os.path.join("docs", "HISTORY.txt")).read(),
classifiers=[
"Programming Language :: Python",
"Framework :: Zope2",
"Intended Audience :: System Administrators",
],
keywords='zope2 plone',
author='Leonardo Rochael Almeida',
author_email='leorochael@gmail.com',
url='http://pypi.python.org/pypi/Products.ZServerViews',
license='ZPL',
packages=find_packages(),
namespace_packages=['Products'],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'Zope2',
],
extras_require = {
'test': [
'unittest2',
'plone.testing [z2]',
'IPython'
]
},
)