-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
103 lines (93 loc) · 2.18 KB
/
Copy pathpyproject.toml
File metadata and controls
103 lines (93 loc) · 2.18 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
[project]
name = "pipelens"
version = "0.1.0"
description = "SQL Pipelens - multi-agent system (workspace root, not installed)"
readme = "README.md"
requires-python = ">=3.14"
dependencies = [
"a2a-sdk[http]>=1.0.2",
"langchain-anthropic>=1.4.3",
"langchain-core>=1.3.3",
"langchain-google-genai>=4.2.2",
"langchain-openai>=1.2.1",
"langgraph>=1.1.10",
"pyyaml>=6.0.3",
"snowflake-snowpark-python>=1.50.0",
"sqlfluff>=4.1.0",
]
[dependency-groups]
dev = [
"ruff>=0.15.12",
"pytest>=8.0",
"pytest-asyncio>=0.23",
"pytest-cov>=5.0",
"httpx>=0.27",
"respx>=0.21",
"mypy>=1.11",
"pre-commit>=3.7",
]
[tool.uv.workspace]
members = [
"apps/orchestrator",
"apps/mcp-server",
"agents/*",
"packages/*",
]
[tool.uv.sources]
common = { workspace = true }
agent-lint-auditor = { workspace = true }
orchestrator = { workspace = true }
mcp-server = { workspace = true }
[tool.ruff]
line-length = 100
target-version = "py314"
extend-exclude = [
"__pycache__",
"apps/frontend",
".venv",
".claude",
# Legacy capstone-draft artifacts moved out of the active tree on
# 2026-05-06. Preserved in git history; do not lint/format them.
"archive",
"notebooks",
]
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"B", # flake8-bugbear
"UP", # pyupgrade
"SIM", # flake8-simplify
]
ignore = [
"E501", # line too long (handled by formatter)
]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
[tool.mypy]
python_version = "3.14"
strict = true
warn_unused_ignores = true
warn_redundant_casts = true
exclude = [
"^\\.venv/",
"^apps/frontend/",
"/tests/",
"^\\.claude/",
"^archive/",
"^notebooks/",
]
[[tool.mypy.overrides]]
module = ["a2a.*", "fastmcp.*", "snowflake.*", "keyring.*"]
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = ["yaml", "google.protobuf.*"]
ignore_missing_imports = true
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["apps", "agents", "packages"]
python_files = ["test_*.py", "*_test.py"]
addopts = "-ra --strict-markers --import-mode=importlib"