-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (42 loc) · 996 Bytes
/
pyproject.toml
File metadata and controls
49 lines (42 loc) · 996 Bytes
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
[project]
name = "action-tools"
version = "0.1.0"
description = "A CLI for common tasks when working on Github Actions and reusable workflows"
readme = "README.md"
authors = [
{ name = "Graham Beckley", email = "gbeckley@mozilla.com" }
]
requires-python = ">=3.10"
dependencies = [
"click>=8.2.1",
"httpx>=0.28.1",
"jinja2>=3.1.6",
"pydantic>=2.11.7",
"ruamel-yaml>=0.18.14",
]
[project.scripts]
action-tools = "action_tools.cli:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"pytest>=8.4.1",
"pytest-mock>=3.14.1",
"respx>=0.22.0",
"ruff>=0.12.4",
"tox>=4.28.1",
"tox-uv>=1.26.2",
]
[tool.ruff.lint]
extend-select = ["I", "PT"]
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]
[tool.tox]
env_list = ["3.10", "3.11", "3.12", "3.13"]
[tool.tox.env_run_base]
description = "Run tests under {base_python}"
runner = "uv-venv-lock-runner"
commands = [["pytest"]]