2025-02-24 14:26:48 -08:00
|
|
|
[project]
|
|
|
|
|
name = "icecast-irc-bot"
|
|
|
|
|
dynamic = ["version"]
|
|
|
|
|
description = "Icecast metadata IRC announcer bot"
|
|
|
|
|
authors = [
|
|
|
|
|
{name = "cottongin", email = "cottongin@cottongin.xyz"},
|
|
|
|
|
]
|
|
|
|
|
dependencies = [
|
|
|
|
|
"asif",
|
|
|
|
|
"aiohttp",
|
|
|
|
|
"pyyaml",
|
|
|
|
|
]
|
|
|
|
|
requires-python = ">=3.11"
|
|
|
|
|
|
|
|
|
|
[build-system]
|
|
|
|
|
requires = ["hatchling"]
|
|
|
|
|
build-backend = "hatchling.build"
|
|
|
|
|
|
2025-02-24 21:48:51 -08:00
|
|
|
[tool.hatch.version]
|
|
|
|
|
source = "regex"
|
|
|
|
|
path = "VERSION"
|
|
|
|
|
pattern = "^(?P<version>[0-9]+\\.[0-9]+\\.[0-9]+)$"
|
|
|
|
|
|
2025-02-24 14:26:48 -08:00
|
|
|
[tool.hatch.build.targets.wheel]
|
|
|
|
|
packages = ["."]
|
|
|
|
|
|
|
|
|
|
[tool.hatch.build]
|
|
|
|
|
include = [
|
|
|
|
|
"*.py",
|
|
|
|
|
"README*",
|
|
|
|
|
"LICENSE*",
|
|
|
|
|
"config.yaml.example"
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[tool.setuptools.dynamic]
|
|
|
|
|
version = {file = "VERSION"}
|