-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
158 lines (142 loc) · 3.58 KB
/
pyproject.toml
File metadata and controls
158 lines (142 loc) · 3.58 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
[project]
name = "pydantic-ai-backend"
version = "0.1.14"
description = "File storage and sandbox backends for AI agents"
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
authors = [{ name = "VStorm" }]
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>=2.0",
"wcmatch>=8.0",
]
[project.optional-dependencies]
console = [
"pydantic-ai>=0.1.0",
]
daytona = [
"daytona-sdk>=0.9.0",
]
docker = [
"docker>=7.0",
"pypdf>=5.1.0",
"chardet>=5.2.0",
]
dev = [
"pydantic-ai>=0.1.0",
"pytest>=9.0.0",
"pytest-asyncio>=0.23.0",
"pytest-cov>=7.0.0",
"coverage>=7.0.0",
"ruff>=0.8.0",
"pyright>=1.1.400",
"mypy>=1.0.0",
"pre-commit>=4.0.0",
"build>=1.0.0",
]
[project.urls]
Homepage = "https://github.com/vstorm-co/pydantic-ai-backend"
Repository = "https://github.com/vstorm-co/pydantic-ai-backend"
Issues = "https://github.com/vstorm-co/pydantic-ai-backend/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/pydantic_ai_backends"]
# Ruff configuration
[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"
# Pytest configuration
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
asyncio_default_fixture_loop_scope = "function"
markers = [
"docker: marks tests as requiring Docker (deselect with '-m \"not docker\"')",
]
addopts = "-m 'not docker'"
# Coverage configuration
[tool.coverage.run]
branch = true
source = ["src/pydantic_ai_backends"]
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"
# Pyright configuration
[tool.pyright]
pythonVersion = "3.10"
typeCheckingMode = "basic"
include = ["src/pydantic_ai_backends"]
exclude = ["**/__pycache__", ".venv*", "tests"]
reportMissingTypeStubs = false
reportMissingImports = false
reportMissingModuleSource = false
reportUnknownMemberType = false
reportUnknownArgumentType = false
reportUnknownVariableType = false
reportUnknownParameterType = false
reportOptionalMemberAccess = false
# MyPy configuration
[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
# Codespell configuration
[tool.codespell]
skip = ".git,.venv*,uv.lock,htmlcov,.coverage"