forked from Yelp/Testify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (39 loc) · 1.94 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
from setuptools import setup
setup(
name="testify",
version="0.11.0",
provides=["testify"],
author="Yelp",
author_email="[email protected]",
url="http://github.com/Yelp/Testify",
description='Testing framework',
classifiers=[
"Programming Language :: Python",
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: Implementation :: CPython',
"Operating System :: OS Independent",
"License :: OSI Approved :: Apache Software License",
"Topic :: Software Development :: Testing",
"Intended Audience :: Developers",
"Development Status :: 4 - Beta",
],
install_requires=['mock', 'six>=1.7.3'],
packages=["testify", "testify.contrib", "testify.utils", "testify.plugins"],
scripts=['bin/testify'],
long_description="""Testify - A Testing Framework
Testify is a replacement for Python's unittest module and nose. It is modeled after unittest, and tests written for unittest
will run under testify with a minimum of adjustments, but it has features above and beyond unittest:
- class-level setup and teardown fixture methods which are run once each for an entire set of test methods.
- a decorator-based approach for fixture methods, eliminating the need for super() calls.
- More pythonic, less java
- enhanced test discovery - testify can drill down into packages to find test cases (similiar to nose).
- support for collecting and running tests by collecting modules, classes or methods into test suites.
- Pretty test runner output (color!)
- Extensible plugin system for adding additional functionality around reporting
- Comes complete with other handy testing utilities: Mocking (turtle), code coverage integration and profiling.
"""
)