-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
73 lines (63 loc) · 1.8 KB
/
pyproject.toml
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[project]
name = "haas"
dynamic = ["version"]
description = "Extensible Python Test Runner"
authors = [
{ name = "Simon Jagoe", email = "[email protected]" },
]
license = { file = "LICENSE.txt" }
readme = "README.rst"
requires-python = ">= 3.7"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: OS Independent",
"Operating System :: POSIX",
"Operating System :: Unix",
"Topic :: Software Development",
"Topic :: Software Development :: Testing",
]
dependencies = [
"stevedore",
]
[project.optional-dependencies]
test = [
"coverage",
"testfixtures",
]
docs = [
"refactordoc",
"sphinx",
"sphinx-rtd-theme",
]
[project.urls]
Repository = "https://github.com/scalative/haas"
[tool.setuptools]
packages = [
"haas",
"haas.plugins",
"haas.tests",
"haas.plugins.tests",
]
[tool.setuptools.dynamic]
version = {attr = "haas.__version__"}
[project.scripts]
haas = "haas.main:main"
[project.entry-points."haas.hooks.environment"]
coverage = "haas.plugins.coverage:Coverage"
[project.entry-points."haas.discovery"]
default = "haas.plugins.discoverer:Discoverer"
[project.entry-points."haas.runner"]
default = "haas.plugins.runner:BaseTestRunner"
parallel = "haas.plugins.parallel_runner:ParallelTestRunner"
[project.entry-points."haas.result.handler"]
default = "haas.plugins.result_handler:StandardTestResultHandler"
quiet = "haas.plugins.result_handler:QuietTestResultHandler"
verbose = "haas.plugins.result_handler:VerboseTestResultHandler"
timing = "haas.plugins.result_handler:TimingResultHandler"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"