-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (43 loc) · 950 Bytes
/
pyproject.toml
File metadata and controls
51 lines (43 loc) · 950 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
50
51
[project]
name = "ai_log_analysis"
version = "0.1.0"
description = "Default template for PDM package"
authors = [
{name = "ananthvk", email = "-"},
]
dependencies = ["boto3>=1.42.57", "instructor[bedrock]>=1.14.5", "botocore[crt]>=1.42.59"]
requires-python = "==3.14.*"
readme = "README.md"
license = {text = "MIT"}
[tool.pdm]
distribution = false
[tool.pdm.scripts]
typecheck = "mypy log_analyser --strict"
format = { composite = [
"ruff check . --fix",
"ruff format .",
"ruff check . --select I --fix",
"black .",
] }
test = "pytest"
codespell = "codespell"
check = { composite = [
"pdm run format",
"pdm run typecheck",
"pdm run test",
"pdm run codespell",
] }
[tool.isort]
profile = "black"
[tool.black]
line-length = 88
[tool.pytest.ini_options]
pythonpath = ["."]
[dependency-groups]
dev = [
"pytest>=9.0.2",
"mypy>=1.19.1",
"black>=26.1.0",
"ruff>=0.15.4",
"codespell>=2.4.1",
]