-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (39 loc) · 1007 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
40
41
42
43
[tool.poetry]
name = "cacheme"
version = "0.3.0"
description = "async caching framework"
authors = ["Yiling-J <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.7"
msgpack = "^1.0.4"
pydantic = "^1.10.4"
typing-extensions = "^4.4.0"
redis = { version = "^4.4.2", optional = true }
motor = { version = "^3.1.1", optional = true }
aiomysql = { version = "^0.1.1", optional = true }
asyncpg = { version = "^0.27.0", optional = true }
theine = "^0.3.0"
[tool.poetry.group.dev.dependencies]
msgpack = "^1.0.4"
pydantic = "^1.10.4"
typing-extensions = "^4.4.0"
pytest = "^7.2.1"
pytest-asyncio = "^0.20.3"
pytest-benchmark = "^4.0.0"
redis = "^4.4.2"
types-redis = "^4.4.0.3"
motor = "^3.1.1"
aiomysql = "^0.1.1"
asyncpg = "^0.27.0"
mypy = "^0.991"
aiocache = "^0.12.0"
cashews = "^5.3.1"
[tool.poetry.extras]
redis = ["redis"]
aiomysql = ["aiomysql"]
motor = ["motor"]
asyncpg = ["asyncpg"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"