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
|
[build-system]
requires = ["flit_core >=3.12,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "stestr"
authors = [{name = "Matthew Treinish", email = "mtreinish@kortar.org"}]
readme = "README.rst"
license = "Apache-2.0"
dynamic = ["version"]
description = "A parallel Python test runner built around subunit"
classifiers = [
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Quality Assurance",
]
requires-python = ">=3.8"
dependencies = [
"cliff>=2.8.0",
"python-subunit>=1.4.0",
"fixtures>=3.0.0",
"testtools>=2.2.0",
"PyYAML>=3.10.0",
"voluptuous>=0.8.9",
"tomlkit>=0.11.6",
]
[project.urls]
Homepage = "https://stestr.readthedocs.io/en/stable/"
Documentation = "https://stestr.readthedocs.io"
Repository = "https://github.com/mtreinish/stestr"
Issues = "https://github.com/mtreinish/stestr/issues"
[tool.flit.module]
name = "stestr"
[project.scripts]
stestr = "stestr.cli:main"
[project.entry-points."stestr.cm"]
run = "stestr.commands.run:Run"
failing = "stestr.commands.failing:Failing"
init = "stestr.commands.init:Init"
last = "stestr.commands.last:Last"
list = "stestr.commands.list:List"
load = "stestr.commands.load:Load"
slowest = "stestr.commands.slowest:Slowest"
history_list = "stestr.commands.history:HistoryList"
history_show = "stestr.commands.history:HistoryShow"
history_remove = "stestr.commands.history:HistoryRemove"
|