add package: pyproject + src (core Webhook, WebhookResult, errors, discord layer)

Signed-off-by: disqualifier <dev@disqualifier.me>
This commit is contained in:
2026-06-25 14:50:05 -04:00
parent 3f164abf84
commit 7a0c8abf30
6 changed files with 392 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "aiowebhooks"
version = "0.1.0"
description = "async webhook sender (aiohttp) with round-robin urls, retry, and proxy rotation; optional discord.py embeds"
requires-python = ">=3.10"
dependencies = [
"aiohttp>=3.9",
]
[project.optional-dependencies]
discord = [
"discord.py>=2.3",
]
[tool.hatch.build.targets.wheel]
packages = ["src/aiowebhooks"]