-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (35 loc) Β· 1.14 KB
/
Copy pathpyproject.toml
File metadata and controls
44 lines (35 loc) Β· 1.14 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "devops-error-library"
version = "0.1.0"
description = "The open-source knowledge base of real DevOps, Cloud, Kubernetes, Docker, Terraform and OpenStack errors β with a fast local search tool."
readme = "README.md"
license = { text = "CC-BY-4.0" }
requires-python = ">=3.10"
authors = [{ name = "DevOps Error Library contributors" }]
keywords = [
"devops", "sre", "troubleshooting", "errors", "kubernetes", "docker",
"terraform", "openstack", "linux", "incident-response", "knowledge-base",
]
dependencies = ["pyyaml>=6.0"]
[project.optional-dependencies]
dev = ["pytest>=8.0", "ruff>=0.5"]
[project.scripts]
errlib = "errlib.cli:main"
[project.urls]
Homepage = "https://github.com/devopsaitoolkit/devops-error-library"
Guides = "https://devopsaitoolkit.com/blog"
[tool.hatch.build.targets.wheel]
packages = ["errlib"]
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM", "RUF"]
[tool.ruff.lint.per-file-ignores]
"tests/*" = ["S"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-ra -q"