-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (42 loc) · 1.03 KB
/
pyproject.toml
File metadata and controls
49 lines (42 loc) · 1.03 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 = "ideas"
version = "2026.3"
description = "Improved Decoding and Equivalence Automated testing at Scale"
readme = "README.md"
license = {file = "LICENSE"}
requires-python = "~=3.13.0"
dependencies = [
"clang==21.1.7",
"dspy==3.1.2",
"kiss-agent-framework==0.2.27",
"hydra-core==1.3.2",
"networkx==3.6.1",
"tomlkit>=0.14.0",
"tree-sitter==0.25.2",
"tree-sitter-rust==0.24.0",
]
[dependency-groups]
dev = [
"basedpyright==1.29.4",
"pre-commit==4.2.0",
"pytest==9.0.3",
"ruff==0.11.13",
]
[build-system]
requires = ["uv_build>=0.10.9,<0.11.0"]
build-backend = "uv_build"
[tool.basedpyright]
venvPath = "."
venv = ".venv"
typeCheckingMode = "standard"
deprecateTypingAliases = true
reportDeprecated = true
reportPrivateImportUsage = false
[tool.pytest.ini_options]
pythonpath = ["src"]
[tool.ruff]
line-length = 96
[tool.uv]
# Ensure that the setuptools v81.0.0 is used whenever a package has a build dependency
# on setuptools.
build-constraint-dependencies = ["setuptools==81.0.0"]