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 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
|
# SPDX-FileCopyrightText: Peter Pentchev <roam@ringlet.net>
# SPDX-License-Identifier: BSD-2-Clause
[build-system]
requires = [
"hatchling >= 1.8, < 2",
"hatch-requirements-txt >= 0.3, < 0.5",
]
build-backend = "hatchling.build"
[project]
name = "test_stages"
description = "Group Tox, Nox, etc environments into stages, run them in parallel"
readme = "README.md"
license = {text = "BSD-2-Clause"}
requires-python = ">= 3.10"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Framework :: tox",
"Intended Audience :: Developers",
"License :: DFSG approved",
"License :: Freely Distributable",
"License :: OSI Approved",
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX",
"Operating System :: Unix",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Testing :: Unit",
"Topic :: Utilities",
"Typing :: Typed",
]
dynamic = ["dependencies", "version"]
[[project.authors]]
name = "Peter Pentchev"
email = "roam@ringlet.net"
[project.entry-points.tox]
trivtags = "tox_trivtags"
[project.optional-dependencies]
tox = ["tox >= 4, < 5"]
[project.scripts]
tox-stages = "test_stages.tox_stages.__main__:main"
[project.urls]
Homepage = "https://devel.ringlet.net/devel/test-stages"
Changes = "https://devel.ringlet.net/devel/test-stages/changes/"
"Issue Tracker" = "https://gitlab.com/ppentchev/test-stages/-/issues"
"Source Code" = "https://gitlab.com/ppentchev/test-stages"
[tool.hatch.build.targets.wheel]
packages = ["src/test_stages", "src/tox_trivtags"]
[tool.hatch.metadata.hooks.requirements_txt]
files = ["requirements/install.txt"]
[tool.hatch.version]
path = "src/test_stages/__init__.py"
[tool.mypy]
strict = true
[tool.publync.format.version]
major = 0
minor = 1
[tool.publync.build.tox]
[tool.publync.sync.rsync]
remote = "marla.ludost.net:vhosts/devel.ringlet.net/public_html/devel/test-stages"
[tool.ruff]
extend = "ruff-base.toml"
output-format = "concise"
preview = true
[tool.ruff.lint]
select = ["ALL"]
[tool.test-stages]
stages = [
"@check and @quick and not @manual",
"@check and not @manual",
"@tests and not @manual",
]
|