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
|
[tool.poetry]
name = "cachy"
version = "0.3.0"
description = "Cachy provides a simple yet effective caching library."
license = "MIT"
authors = [
"Sébastien Eustace <sebastien@eustace.io>"
]
readme = 'README.rst'
homepage = "https://github.com/sdispater/cachy"
repository = "https://github.com/sdispater/cachy"
keywords = ['cache']
packages = [
{include = "cachy"},
{include = "tests", format = "sdist"},
]
[tool.poetry.dependencies]
python = "~2.7 || ^3.4"
redis = { version = "^3.3.6", optional = true }
python-memcached = { version = "^1.59", optional = true }
msgpack-python = { version = "^0.5", optional = true }
[tool.poetry.extras]
redis = ["redis"]
memcached = ["python-memcached"]
msgpack = ["msgpack-python"]
[tool.poetry.dev-dependencies]
pytest = "^4.6"
pytest-mock = "^1.10.4"
flexmock = "^0.10.4"
fakeredis = {git = "https://github.com/jamesls/fakeredis.git"}
|