-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
168 lines (150 loc) · 4.05 KB
/
pyproject.toml
File metadata and controls
168 lines (150 loc) · 4.05 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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
[project]
name = "pydantic-ai-middleware"
version = "0.2.2"
description = "Simple middleware library for Pydantic-AI - before/after hooks without imposed guardrails structure"
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
authors = [
{ name = "Pydantic AI Middleware Contributors" }
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"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 :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
dependencies = [
"pydantic-ai-slim>=1.39",
"pydantic>=2.0",
"genai-prices>=0.0.49",
]
[project.optional-dependencies]
dev = [
"pre-commit>=4.5.1",
"ruff>=0.8.0",
"pyright>=1.1.0",
]
yaml = [
"PyYAML>=6.0",
]
[project.urls]
Homepage = "https://github.com/vstorm-co/pydantic-ai-middleware"
Documentation = "https://vstorm-co.github.io/pydantic-ai-middleware/"
Repository = "https://github.com/vstorm-co/pydantic-ai-middleware"
Issues = "https://github.com/vstorm-co/pydantic-ai-middleware/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/pydantic_ai_middleware"]
[dependency-groups]
dev = [
"pytest>=9.0.0",
"pytest-asyncio>=0.23.0",
"coverage>=7.0.0",
"build>=1.3.0",
"twine>=6.2.0",
]
lint = [
"ruff>=0.8.0",
"pyright>=1.1.0",
"mypy>=1.0.0",
]
docs = [
"mkdocs>=1.6.0",
"mkdocs-material>=9.5.0",
"mkdocstrings>=0.26.0",
"mkdocstrings-python>=1.12.0",
"mkdocs-llmstxt>=0.2.0",
]
[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
]
[tool.ruff.lint.mccabe]
max-complexity = 15
[tool.ruff.format]
quote-style = "double"
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
asyncio_default_fixture_loop_scope = "function"
[tool.coverage.run]
branch = true
source = ["src/pydantic_ai_middleware"]
data_file = ".coverage/.coverage"
[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.pyright]
pythonVersion = "3.10"
typeCheckingMode = "basic"
include = ["src/pydantic_ai_middleware"]
exclude = ["**/__pycache__", ".venv*", "site", "playground", "tests", "examples"]
reportMissingTypeStubs = false
reportUnknownMemberType = false
reportUnknownArgumentType = false
reportUnknownVariableType = false
reportUnknownParameterType = false
reportUnusedFunction = false
reportPrivateUsage = false
reportOptionalMemberAccess = 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
mypy_path = "src"
disable_error_code = ["override", "valid-type", "unused-ignore", "comparison-overlap"]
[[tool.mypy.overrides]]
module = "tests.*"
disallow_untyped_defs = false
disable_error_code = ["arg-type", "list-item", "abstract", "unused-ignore", "comparison-overlap"]
[[tool.mypy.overrides]]
module = "pydantic_ai_middleware.*"
disable_error_code = ["override", "valid-type", "assignment"]
[tool.codespell]
skip = ".git,.venv*,uv.lock,site,htmlcov,.coverage"