-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (35 loc) · 785 Bytes
/
Copy pathpyproject.toml
File metadata and controls
39 lines (35 loc) · 785 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
[project]
name = "agentic-code-assistant"
version = "0.1.0"
description = "A multi-agent AI coder. Agents collaborate to solve coding tasks."
readme = "README.md"
requires-python = ">=3.12.9"
dependencies = [
"litellm>=1.72.6",
"pyyaml>=6.0.2",
"pydantic>=2.11.5",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-mock>=3.12.0",
]
[tool.setuptools]
packages = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = [
"-v",
"--strict-markers",
"--tb=short",
]
markers = [
"integration: Integration tests",
"unit: Unit tests",
"slow: Slow running tests",
]
[tool.uv.sources]
multi-agent-coding-system = { workspace = true }