ahtcg_discord_bot/pyproject.toml

42 lines
773 B
TOML
Raw Permalink Normal View History

2022-03-14 11:23:59 -04:00
[project]
name = "ArkhamDB_Discord_Bot"
2024-04-20 20:11:54 -04:00
version = "0.1.5"
2022-03-14 11:23:59 -04:00
description = ""
authors = [
{name = "Adam Goldsmith", email = "adam@adamgoldsmith.name"},
]
license = {text = "MIT"}
2022-03-14 11:23:59 -04:00
dependencies = [
2023-09-05 18:25:06 -04:00
"discord-py>=2.3.2",
2024-04-20 20:03:32 -04:00
"aiohttp>=3.9.5",
2023-09-05 18:25:06 -04:00
"ConfigArgParse>=1.7",
2022-03-14 11:23:59 -04:00
]
requires-python = ">=3.10"
[project.urls]
Homepage = "https://git.adamgoldsmith.name/adam/ahtcg_discord_bot"
[project.scripts]
arkhamdb_discord_bot = "ahtcg_bot:main"
2022-03-07 12:54:11 -05:00
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
2022-03-14 01:08:14 -04:00
[tool.black]
line-length = 88
2022-03-14 11:23:59 -04:00
[tool.mypy]
disallow_untyped_defs = true
disallow_incomplete_defs = true
python_version = "3.10"
strict = true
show_error_codes = true
warn_unused_ignores = true
2023-09-05 18:25:06 -04:00
[tool.pdm.dev-dependencies]
format = [
2024-04-20 20:03:32 -04:00
"black>=24.4.0",
2023-09-05 18:25:06 -04:00
]