-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (43 loc) · 1.25 KB
/
pyproject.toml
File metadata and controls
51 lines (43 loc) · 1.25 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
[project]
name = "pydantic-async-validation"
version = "0.4.1"
description = "Add async validation to pydantic"
authors = [{ name = "TEAM23 GmbH", email = "info@team23.de" }]
license = "MIT"
license-files = ["LICENSE"]
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"pydantic>=2.0.0,<3.0.0",
]
[project.optional-dependencies]
fastapi = ["fastapi>=0.100.0,<1.0.0"]
[project.urls]
Repository = "https://github.com/team23/pydantic-async-validation"
[dependency-groups]
dev = [
"pytest>=8.4.2,<10.0.0",
"pytest-cov>=7.0.0,<8",
"pytest-asyncio>=0.24.0,<1.4.0",
"tox>=4.30.3,<5.0",
"httpx>=0.28.1,<0.29.0",
"ruff>=0.14.0,<0.16.0",
"pyright>=1.1.406,<1.2",
]
[tool.ruff]
line-length = 115
target-version = "py310"
output-format = "grouped"
[tool.ruff.lint]
select = ["F","E","W","C","I","N","UP","ANN","S","B","A","COM","C4","T20","PT","ARG","TD","RUF"]
ignore = ["A001","A002","A003","ANN401","C901","N8","B008","F405","F821"]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]
"conftest.py" = ["S101","ANN","F401"]
"test_*.py" = ["S101","ANN","F401"]
[build-system]
requires = ["uv_build>=0.8.22,<0.11.0"]
build-backend = "uv_build"
[tool.uv.build-backend]
module-name = "pydantic_async_validation"
module-root = ""