add package: pyproject + src (DPYCache, cache/cache_one/cache_url/resolve/lookup, fail-loud)

Signed-off-by: disqualifier <dev@disqualifier.me>
This commit is contained in:
2026-07-02 19:20:08 -04:00
parent e06bf12fae
commit 2e93a0bcee
3 changed files with 304 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "dpy_cache"
version = "0.1.0"
description = "Persist images/files to a Discord storage channel and get durable, re-resolvable CDN references — config-free, injectable, installable."
requires-python = ">=3.10"
dependencies = [
"discord.py>=2.0",
"aiohttp>=3.8",
]
[tool.hatch.build.targets.wheel]
packages = ["src/dpy_cache"]