-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
57 lines (49 loc) · 1.3 KB
/
pyproject.toml
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
[tool.poetry]
name = "fastapi-overrider"
version = "0.7.2"
description = "FastAPI Dependency overrides made easy."
authors = ["Philipp Hack <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/phha/fastapi-overrider"
repository = "https://github.com/phha/fastapi-overrider"
packages = [{include = "fastapi_overrider"}]
keywords = ["fastapi", "pytest"]
classifiers = [
"Framework :: FastAPI",
"Framework :: Pytest"
]
[tool.poetry.dependencies]
python = "^3.10"
fastapi = ">=0.95.2"
pytest = "^7.3.1"
unifactory = {version="^0.1.0", optional = true}
[tool.poetry.group.dev.dependencies]
pre-commit = "^2.21.0"
ruff = "^0.1.9"
[tool.poetry.group.test.dependencies]
httpx = "^0.26.0"
unifactory = "^0.1.0"
beanie = "^1.24.0"
mongomock-motor = "^0.0.26"
odmantic = "^1.0.0"
msgspec = "^0.18.5"
sqlalchemy = "^2.0.24"
attrs = "^23.2.0"
[tool.poetry.extras]
unifactory = ["unifactory"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
select = ["ALL"]
ignore = ["D", "ANN101", "TRY003", "COM812", "ISC001"]
target-version = "py312"
fixable = ["ALL"]
[tool.ruff.per-file-ignores]
"tests/*" = ["S101"]
[tool.pytest.ini_options]
filterwarnings = [
"ignore:.*general_plain_validator_function.*",
"ignore:.*model_fields.*",
]