43 lines
788 B
TOML
43 lines
788 B
TOML
[project]
|
|
name = "ArkhamDB_Discord_Bot"
|
|
version = "0.1.6"
|
|
description = ""
|
|
authors = [
|
|
{name = "Adam Goldsmith", email = "adam@adamgoldsmith.name"},
|
|
]
|
|
license = {text = "MIT"}
|
|
dependencies = [
|
|
"discord-py>=2.4.0",
|
|
"aiohttp>=3.11.11",
|
|
"ConfigArgParse>=1.7",
|
|
"audioop-lts>=0.2.1",
|
|
]
|
|
requires-python = ">=3.13"
|
|
|
|
[project.urls]
|
|
Homepage = "https://git.adamgoldsmith.name/adam/ahtcg_discord_bot"
|
|
|
|
[project.scripts]
|
|
arkhamdb_discord_bot = "ahtcg_bot:main"
|
|
|
|
[build-system]
|
|
requires = ["pdm-backend"]
|
|
build-backend = "pdm.backend"
|
|
|
|
[tool.black]
|
|
line-length = 88
|
|
|
|
[tool.mypy]
|
|
disallow_untyped_defs = true
|
|
disallow_incomplete_defs = true
|
|
python_version = "3.10"
|
|
strict = true
|
|
show_error_codes = true
|
|
warn_unused_ignores = true
|
|
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"ruff>=0.8.4",
|
|
]
|