-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (37 loc) · 857 Bytes
/
pyproject.toml
File metadata and controls
43 lines (37 loc) · 857 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
[project]
name = "actions-graph"
version = "0.1.0"
description = "Visualize your GitHub Actions dependency tree — the npm ls that Actions never got."
readme = "README.md"
license = "MIT"
authors = [
{ name = "Nicolas Corder", email = "nicolas@go-redrock.com" }
]
requires-python = ">=3.10"
dependencies = [
"pyyaml>=6.0",
"httpx>=0.27",
"networkx>=3.0",
"rich>=13.0",
"typer>=0.12",
"pydot>=3.0",
]
[project.scripts]
actions-graph = "actions_graph.cli:app"
[build-system]
requires = ["uv_build>=0.10.2,<0.11.0"]
build-backend = "uv_build"
[tool.ruff]
target-version = "py310"
line-length = 99
[tool.ruff.lint]
select = ["E", "F", "W", "I", "UP", "B", "SIM"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-v --tb=short"
[dependency-groups]
dev = [
"pytest>=8.0",
"pytest-cov>=6.0",
"ruff>=0.9",
]