-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (37 loc) · 1.45 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
##############################################################################
#
# Copyright (c) Zope Foundation and Contributors.
# All Rights Reserved.
#
# 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.
#
##############################################################################
name, version = 'zc.wsgidriver', '0.1.0'
install_requires = ['setuptools', 'manuel', 'zope.testing',
'selenium', 'zc.customdoctests']
extras_require = dict(test=['bobo', 'zope.testing'])
entry_points = """
"""
from setuptools import setup
long_description = open('README.rst').read()
setup(
author = 'Jim Fulton',
author_email = '[email protected]',
license = 'ZPL 2.1',
name = name, version = version,
long_description=long_description,
description = long_description.strip().split('\n')[0],
packages = ['zc', name],
namespace_packages = [name.split('.')[0]],
package_dir = {'': 'src'},
install_requires = install_requires,
zip_safe = False,
entry_points=entry_points,
extras_require = extras_require,
package_data = {name: ['*.rst', '*.txt', '*.test', '*.html']},
)