This repository has been archived by the owner on Jul 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
59 lines (55 loc) · 2.98 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
56
57
58
59
from setuptools import setup, find_packages
builtin_plugins = [
'CommandLineSupplier = contexts.plugins.test_target_suppliers:CommandLineSupplier',
'ExitCodeReporter = contexts.plugins.reporting:ExitCodeReporter',
'ArgvForwarder = contexts.plugins.argv_forwarder:ArgvForwarder',
'Shuffler = contexts.plugins.shuffling:Shuffler',
'Importer = contexts.plugins.importing:Importer',
'AssertionRewritingImporter = contexts.plugins.importing.assertion_rewriting:AssertionRewritingImporter',
'DecoratorBasedIdentifier = contexts.plugins.identification.decorators:DecoratorBasedIdentifier',
'NameBasedIdentifier = contexts.plugins.identification:NameBasedIdentifier',
'FileSpecIdentifier = contexts.plugins.identification.filespec:FileSpecIdentifier',
'TeamCityReporter = contexts.plugins.reporting.teamcity:TeamCityReporter',
'DotsReporter = contexts.plugins.reporting.cli:DotsReporter',
'VerboseReporter = contexts.plugins.reporting.cli:VerboseReporter',
'StdOutCapturingReporter = contexts.plugins.reporting.cli:StdOutCapturingReporter',
'Colouriser = contexts.plugins.reporting.cli:Colouriser', 'UnColouriser = contexts.plugins.reporting.cli:UnColouriser',
'FailuresOnlyMaster = contexts.plugins.reporting.cli:FailuresOnlyMaster',
'FailuresOnlyBefore = contexts.plugins.reporting.cli:FailuresOnlyBefore',
'FailuresOnlyAfter = contexts.plugins.reporting.cli:FailuresOnlyAfter',
'FinalCountsReporter = contexts.plugins.reporting.cli:FinalCountsReporter',
'TimedReporter = contexts.plugins.reporting.cli:TimedReporter',
'XmlReporter = contexts.plugins.reporting.xml:XmlReporter',
]
setup(
name="Contexts",
version="0.11.2",
author="Benjamin Hodgson",
author_email="benjamin.hodgson@huddle.net",
url="https://github.com/benjamin-hodgson/Contexts",
description="""Dead simple descriptive testing for Python. No custom decorators, no context managers, no '.feature' files, no fuss.""",
long_description="""See the Github project page (https://github.com/benjamin-hodgson/Contexts) for more information.""",
package_dir={'': 'src'},
packages=find_packages('src'),
install_requires=["setuptools >= 1.0"],
extras_require={'colour': ["colorama >= 0.2.7"]},
entry_points={
'console_scripts': ['run-contexts=contexts.__main__:cmd'],
'contexts.plugins': builtin_plugins,
},
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Natural Language :: English",
"Operating System :: OS Independent",
"Topic :: Software Development",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Testing"
]
)