Files
fastapi-cache/pyproject.toml
2021-11-12 09:37:02 +08:00

46 lines
1.1 KiB
TOML

[tool.poetry]
name = "fastapi-cache2"
version = "0.1.8"
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]
python = "^3.7"
fastapi = "*"
uvicorn = "*"
aioredis = {version = "^2.0", optional = true}
aiomcache = {version = "*", optional = true}
pendulum = "*"
aiobotocore = {version = "^1.4.1", optional = true}
[tool.poetry.dev-dependencies]
flake8 = "*"
isort = "*"
black = "*"
pytest = "*"
bandit = "*"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.poetry.extras]
redis = ["aioredis"]
memcache = ["aiomcache"]
dynamodb = ["aiobotocore"]
all = ["aioredis","aiomcache"]
[tool.black]
line-length = 100
target-version = ['py36', 'py37', 'py38', 'py39']