forked from vstorm-co/subagents-pydantic-ai
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
154 lines (138 loc) · 3.91 KB
/
pyproject.toml
File metadata and controls
154 lines (138 loc) · 3.91 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
[project]
name = "subagents-pydantic-ai"
version = "0.0.7"
description = "Subagent toolset for pydantic-ai with dual-mode execution and dynamic agent creation"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.10"
authors = [{ name = "Vstorm", email = "hr@vstorm.co" }]
keywords = [
"pydantic",
"pydantic-ai",
"ai",
"agents",
"subagents",
"multi-agent",
"toolset",
"task-delegation",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
dependencies = ["pydantic>=2.0", "pydantic-ai-slim>=1.38"]
[project.urls]
Homepage = "https://github.com/vstorm-co/subagents-pydantic-ai"
Documentation = "https://github.com/vstorm-co/subagents-pydantic-ai#readme"
Repository = "https://github.com/vstorm-co/subagents-pydantic-ai"
Issues = "https://github.com/vstorm-co/subagents-pydantic-ai/issues"
Changelog = "https://github.com/vstorm-co/subagents-pydantic-ai/releases"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/subagents_pydantic_ai"]
[dependency-groups]
dev = [
"build>=1.0.0",
"coverage>=7.0.0",
"pyright>=1.1.0",
"mypy>=1.0.0",
"pytest>=9.0.0",
"pytest-asyncio>=0.23.0",
"pytest-cov>=5.0.0",
"ruff>=0.8.0",
"pre-commit>=4.5.0",
]
docs = [
"mkdocs>=1.6.0",
"mkdocs-material>=9.5.0",
"mkdocstrings>=0.26.0",
"mkdocstrings-python>=1.12.0",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
testpaths = ["tests"]
[tool.coverage.run]
branch = true
source = ["src/subagents_pydantic_ai"]
[tool.coverage.report]
fail_under = 100
skip_covered = true
show_missing = true
precision = 2
exclude_also = ["# pragma: no branch"]
exclude_lines = [
"pragma: no cover",
"pragma: lax no cover",
"if TYPE_CHECKING:",
"@overload",
"@abstractmethod",
"raise NotImplementedError",
"if __name__ == '__main__':",
"except ImportError:",
"pass",
"\\.\\.\\.",
]
[tool.coverage.html]
directory = "htmlcov"
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"F", # Pyflakes
"I", # isort
"UP", # pyupgrade
"B", # flake8-bugbear
"SIM", # flake8-simplify
"Q", # flake8-quotes
"RUF100", # unused noqa
"C90", # mccabe complexity
]
ignore = [
"B021", # f-string docstrings are used intentionally for dynamic LLM tool documentation
"SIM105", # contextlib.suppress is less readable in async contexts
]
[tool.ruff.lint.mccabe]
max-complexity = 30 # Factory functions are intentionally complex
[tool.ruff.format]
quote-style = "double"
[tool.pyright]
pythonVersion = "3.10"
typeCheckingMode = "basic"
include = ["src/subagents_pydantic_ai"]
exclude = ["**/__pycache__", ".venv*", "site", "tests"]
reportMissingTypeStubs = false
reportUnknownMemberType = false
reportUnknownArgumentType = false
reportUnknownVariableType = false
reportUnknownParameterType = false
reportUnusedFunction = false
reportPrivateUsage = false
reportCallIssue = false
reportAssignmentType = false
reportTypedDictNotRequiredAccess = false
[tool.mypy]
python_version = "3.10"
strict = true
warn_return_any = true
warn_unused_configs = true
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "tests.*"
disallow_untyped_defs = false
disable_error_code = ["arg-type", "list-item", "abstract"]
[tool.codespell]
skip = ".git,.venv*,uv.lock,site,htmlcov,.coverage"