2020-08-26 18:04:57 +08:00
|
|
|
[tool.poetry]
|
|
|
|
|
name = "fastapi-cache2"
|
2021-07-26 16:33:22 +08:00
|
|
|
version = "0.1.6"
|
2020-08-26 18:04:57 +08:00
|
|
|
description = "Cache for FastAPI"
|
|
|
|
|
authors = ["long2ice <long2ice@gmail.com>"]
|
|
|
|
|
license = "Apache-2.0"
|
|
|
|
|
readme = "README.md"
|
|
|
|
|
homepage = "https://github.com/long2ice/fastapi-cache"
|
|
|
|
|
repository = "https://github.com/long2ice/fastapi-cache.git"
|
|
|
|
|
documentation = "https://github.com/long2ice/fastapi-cache"
|
|
|
|
|
keywords = ["fastapi", "cache", "caching"]
|
|
|
|
|
packages = [
|
|
|
|
|
{ include = "fastapi_cache" }
|
|
|
|
|
]
|
|
|
|
|
include = ["LICENSE", "README.md"]
|
|
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2020-10-08 15:10:34 +08:00
|
|
|
python = "^3.7"
|
2021-03-20 14:42:29 +08:00
|
|
|
fastapi = "*"
|
|
|
|
|
uvicorn = "*"
|
2021-07-15 10:00:27 +08:00
|
|
|
aioredis = {version = ">=2.0.0b1", optional = true}
|
2021-03-20 14:42:29 +08:00
|
|
|
aiomcache = {version = "*", optional = true}
|
|
|
|
|
python-dateutil = "*"
|
2020-08-26 18:04:57 +08:00
|
|
|
|
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
|
|
|
flake8 = "*"
|
|
|
|
|
isort = "*"
|
|
|
|
|
black = "^19.10b0"
|
|
|
|
|
pytest = "*"
|
|
|
|
|
bandit = "*"
|
|
|
|
|
|
|
|
|
|
[build-system]
|
|
|
|
|
requires = ["poetry>=0.12"]
|
|
|
|
|
build-backend = "poetry.masonry.api"
|
|
|
|
|
|
|
|
|
|
[tool.poetry.extras]
|
|
|
|
|
redis = ["aioredis"]
|
|
|
|
|
memcache = ["aiomcache"]
|
|
|
|
|
all = ["aioredis","aiomcache"]
|