-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (44 loc) · 1.01 KB
/
Copy pathpyproject.toml
File metadata and controls
49 lines (44 loc) · 1.01 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
[project]
name = "agentic-coder"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"aiofiles>=24.1.0",
"pydantic>=2.11.7",
"pydantic-ai>=0.7.2",
"pydantic-settings>=2.10.1",
"pyee>=13.0.0",
"pytz>=2025.2",
]
[dependency-groups]
dev = [
"pyclean>=3.1.0",
"pytest>=8.4.1",
"pytest-asyncio>=1.1.0",
"ruff>=0.12.5",
]
[tool.ruff]
exclude = [
".ruff_cache",
".git",
".ipynb_checkpoints",
".venv",
".vscode",
"notebooks"
]
extend-include = []
line-length = 120
indent-width = 4
target-version = "py310"
[tool.ruff.lint]
ignore = ["ANN204", "ANN401", "E731", "D", "DTZ005", "BLE001","B008", "CPY001","COM812", "ERA001", "EM101","EM102", "FA","FBT", "G004", "UP", "TRY", "PTH123","ISC001" ]
select = ["ALL"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"
docstring-code-format = false
docstring-code-line-length = "dynamic"