-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (56 loc) 路 1.38 KB
/
Copy pathpyproject.toml
File metadata and controls
64 lines (56 loc) 路 1.38 KB
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
[project]
name = "runbook"
version = "0"
description = "Runbook lib and cli"
requires-python = ">=3.11"
authors = [
{ name = "Zander Hill", email = "[email protected]" },
]
license = "MIT"
readme = "README.md"
dependencies = [
"shx>=0.4.2",
"rich>=13.9.4",
"papermill @ git+https://github.com/zph/papermill@main",
"jupyter>=1.0.0",
"click>=8.1.7",
"bash-kernel>=0.9.3",
"jupyterlab-execute-time>=3.1.0",
"jupytext==1.16.6",
"nbformat>=5.9.2",
"pyyaml>=6.0.1",
"traitlets>=5.14.1",
"ipywidgets>=8.1.1",
"pre-commit>=3.6.0",
"python-ulid>=2.2.0",
"slack-sdk>=3.26.2",
"jupyterlab>=4.1.5",
"nbdime>=4.0.1",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[dependency-groups]
dev = [
"pytest>=8.3.4",
"ruff>=0.9.5",
]
[project.scripts]
runbook = "runbook.cli:cli"
# For the sake of installation accessibility for deno notebooks
jupyter = "jupyter_core.command:main"
[tool.pytest.ini_options]
filterwarnings = [
"ignore::DeprecationWarning:jupyter_client.connect",
"ignore::DeprecationWarning:papermill.parameterize",
]
[tool.ruff]
line-length = 88 # Same default as Black (adjust if needed)
[tool.ruff.format]
quote-style = "double" # Choose "single" or "double"
indent-style = "space"
line-ending = "lf"
[tool.ruff.lint]
select = ["I"]