-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (32 loc) · 822 Bytes
/
pyproject.toml
File metadata and controls
36 lines (32 loc) · 822 Bytes
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
[tool.poetry]
name = "aiocacher"
version = "0.1.5"
description = "Python asyncio caching decorator backed by a Redis server or cluster."
authors = ["Blake VandeMerwe <blakev@null.net>"]
license = "MIT"
[tool.poetry.dependencies]
python = ">=3.8,<4.0"
dill = {version = ">=0.3.4", optional = true}
hiredis = ">=2.0.0"
toolz = ">=0.11.0"
ujson = {version = ">=5.1.0", optional = true}
aioredis = ">=2.0.0"
[tool.poetry.extras]
dill = ["dill"]
ujson = ["ujson"]
[tool.poetry.dev-dependencies]
invoke = "^1.6.0"
pytest = "^6.2.4"
yapf = "^0.31.0"
isort = "^5.9.2"
autoflake = "^1.4"
codespell = "^2.1.0"
pyflakes = "^2.3.1"
pytest-asyncio = "^0.15.1"
pytest-cov = "^2.12.1"
pytest-xdist = "^2.3.0"
vulture = "^2.3"
tox = "^3.24.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"