-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
39 lines (33 loc) · 956 Bytes
/
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
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning>=1.0.0,<2.0.0"]
build-backend = "poetry_dynamic_versioning.backend"
[tool.poetry]
name = "ultra-cache"
version = "0.0.0"
description = "Simple and extensible caching for FastAPI requests"
authors = ["Jegor Kitskerkin <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/jegork/ultra-cache"
[tool.poetry.dependencies]
python = "^3.9"
fastapi = "^0.111.0"
pydantic = "^2.7.1"
dict-hash = "^1.1.37"
redis = { extras = ["hiredis"], version = "^5.0.5", optional = true }
anyio = { version = "^4.4.0", optional = true }
[tool.poetry.group.dev.dependencies]
pytest = "^8.2.0"
ruff = "^0.4.2"
pyright = "^1.1.361"
freezegun = "^1.5.0"
pytest-mock = "^3.14.0"
httpx = "^0.27.0"
fakeredis = "^2.23.2"
nox = "^2024.4.15"
[tool.poetry.extras]
redis = ["redis"]
anyio = ["anyio"]
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"