-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (35 loc) · 848 Bytes
/
Copy pathpyproject.toml
File metadata and controls
42 lines (35 loc) · 848 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
[project]
name = "pair-programmer"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"ddgs>=9.10.0",
"httpx>=0.28.1",
"openai>=2.15.0",
"pydantic>=2.12.5",
"tiktoken>=0.12.0",
"tomli>=2.4.1",
"typer>=0.21.1",
]
[project.scripts]
pp = "pp.interfaces.cli.main:app"
[dependency-groups]
dev = [
"pre-commit>=4.5.1",
"ruff>=0.15.4",
]
[tool.ruff]
line-length = 130
target-version = "py313"
[tool.ruff.lint]
# Core linter rules - most important ones for code quality
select = ["E", "F", "I", "B"] # pycodestyle, Pyflakes, isort, bugbear
ignore = ["F841", "F403", "E402", "B026", "F405", "E101", "B008", "B905", "B006"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
[tool.uv]
exclude-newer = "30 days"
package = true