-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
46 lines (40 loc) · 1.02 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
[tool.poetry]
name = "fastapi-cachepot"
version = "0.1.0"
description = "The FastAPI cache the way it should be."
authors = ["Aleksei Kotenko <[email protected]>"]
readme = "README.md"
packages = [
{ include = "cachepot" },
]
[tool.poetry.dependencies]
python = "^3.9"
fastapi = ">= 0.106.0"
pydantic = "^2.0"
redis = { version = "^4.0.0", optional = true }
[tool.poetry.group.test.dependencies]
mypy = "^1.8.0"
types-redis = "^4.6.0.20240106"
pytest = "7.4.4"
httpx = "^0.26.0"
pytest-asyncio = "^0.23.4"
[tool.mypy]
files = ["."]
python_version = "3.9"
warn_unused_configs = true
disallow_any_generics = true
disallow_subclassing_any = true
disallow_untyped_calls = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
check_untyped_defs = true
disallow_untyped_decorators = true
warn_redundant_casts = true
warn_unused_ignores = true
warn_return_any = true
no_implicit_reexport = true
strict_equality = true
extra_checks = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"