Zope Subversion Repository |
|
Zope: zc.ngi/trunk/setup.py
File:
[Zope] /
zc.ngi /
trunk / setup.py
(
download)
(
as text)
Revision:
114219,
Mon Jul 5 22:20:56 2010 UTC (2 years, 11 months ago) by
jim
File size: 1402 byte(s)
Added support for thr setup(tools) test command
##############################################################################
#
# 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.ngi', '0'
from setuptools import setup, find_packages
readme = open('README.txt').read()
tests_require = ['zope.testing', 'manuel']
setup(
name = name, version=version,
author = "Jim Fulton",
author_email = "jim@zope.com",
description = readme.split('\n', 1)[0],
license = "ZPL 2.1",
keywords = ["networking", "testing"],
url='http://packages.python.org/'+name,
long_description=readme,
tests_require = tests_require,
test_suite = 'zc.ngi.tests.test_suite',
packages = find_packages('src'),
include_package_data = True,
package_dir = {'':'src'},
namespace_packages = ['zc'],
install_requires = ['setuptools'],
extras_require = dict(test=tests_require),
zip_safe = False,
)