add package: pyproject + src (kv/hash/ttl surface, fail-loud, blocking pool)

Signed-off-by: disqualifier <dev@disqualifier.me>
This commit is contained in:
2026-06-29 22:48:15 -04:00
parent f1668befb6
commit 237e3ff765
3 changed files with 251 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "redis_store"
version = "0.1.0"
description = "async redis wrapper over redis-py asyncio with a raw escape hatch, fail-loud and config-free"
requires-python = ">=3.10"
dependencies = [
"redis>=5",
]
[tool.hatch.build.targets.wheel]
packages = ["src/redis_store"]