代码拉取完成,页面将自动刷新
import sys
import os
VERSION = '1.3.7'
py_vers_tag = '-%s.%s' % sys.version_info[:2]
test_dirs = ['functional_tests', 'unit_tests', os.path.join('doc','doc_tests'), 'nose']
if sys.version_info >= (3,):
try:
import setuptools
except ImportError:
from distribute_setup import use_setuptools
use_setuptools()
extra = {'use_2to3': True,
'test_dirs': test_dirs,
'test_build_dir': 'build/tests',
'pyversion_patching': True,
}
else:
extra = {}
try:
from setup3lib import setup
from setuptools import find_packages
addl_args = dict(
zip_safe = False,
packages = find_packages(),
entry_points = {
'console_scripts': [
'nosetests = nose:run_exit',
'nosetests%s = nose:run_exit' % py_vers_tag,
],
'distutils.commands': [
' nosetests = nose.commands:nosetests',
],
},
test_suite = 'nose.collector',
)
addl_args.update(extra)
# This is required by multiprocess plugin; on Windows, if
# the launch script is not import-safe, spawned processes
# will re-run it, resulting in an infinite loop.
if sys.platform == 'win32':
import re
from setuptools.command.easy_install import easy_install
def wrap_write_script(self, script_name, contents, *arg, **kwarg):
if script_name.endswith('.exe'):
return self._write_script(script_name, contents, *arg, **kwarg)
bad_text = re.compile(
"\n"
"sys.exit\(\n"
" load_entry_point\(([^\)]+)\)\(\)\n"
"\)\n")
good_text = (
"\n"
"if __name__ == '__main__':\n"
" sys.exit(\n"
r" load_entry_point(\1)()\n"
" )\n"
)
contents = bad_text.sub(good_text, contents)
return self._write_script(script_name, contents, *arg, **kwarg)
easy_install._write_script = easy_install.write_script
easy_install.write_script = wrap_write_script
except ImportError:
from distutils.core import setup
addl_args = dict(
packages = ['nose', 'nose.ext', 'nose.plugins', 'nose.sphinx',
'nose.tools'],
scripts = ['bin/nosetests'],
)
setup(
name = 'nose',
version = VERSION,
author = 'Jason Pellerin',
author_email = 'jpellerin+nose@gmail.com',
description = ('nose extends unittest to make testing easier'),
long_description = \
"""nose extends the test loading and running features of unittest, making
it easier to write, find and run tests.
By default, nose will run tests in files or directories under the current
working directory whose names include "test" or "Test" at a word boundary
(like "test_this" or "functional_test" or "TestClass" but not
"libtest"). Test output is similar to that of unittest, but also includes
captured stdout output from failing tests, for easy print-style debugging.
These features, and many more, are customizable through the use of
plugins. Plugins included with nose provide support for doctest, code
coverage and profiling, flexible attribute-based test selection,
output capture and more. More information about writing plugins may be
found on in the nose API documentation, here:
http://readthedocs.org/docs/nose/
If you have recently reported a bug marked as fixed, or have a craving for
the very latest, you may want the development version instead:
https://github.com/nose-devs/nose/tarball/master#egg=nose-dev
""",
license = 'GNU LGPL',
keywords = 'test unittest doctest automatic discovery',
url = 'http://readthedocs.org/docs/nose/',
data_files = [('man/man1', ['nosetests.1'])],
package_data = {'': ['*.txt',
'examples/*.py',
'examples/*/*.py']},
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Testing'
],
**addl_args
)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。