47 lines
910 B
TOML
47 lines
910 B
TOML
[project]
|
|
name = "ArkhamDB_Discord_Bot"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = [
|
|
{name = "Adam Goldsmith", email = "adam@adamgoldsmith.name"},
|
|
]
|
|
license-expression = "MIT"
|
|
dependencies = [
|
|
"discord.py @ git+https://github.com/Rapptz/discord.py",
|
|
"aiohttp>=3.7.4.post0",
|
|
"ConfigArgParse~=1.5",
|
|
]
|
|
requires-python = ">=3.10"
|
|
|
|
[project.urls]
|
|
Homepage = "https://git.adamgoldsmith.name/adam/ahtcg_discord_bot"
|
|
|
|
[project.scripts]
|
|
arkhamdb_discord_bot = "ahtcg_bot:main"
|
|
|
|
[tool]
|
|
[tool.pdm]
|
|
[[tool.pdm.source]]
|
|
url = "https://pypi.org/simple"
|
|
verify_ssl = true
|
|
name = "pypi"
|
|
|
|
[tool.pdm.dev-dependencies]
|
|
format = [
|
|
"black~=22.1",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["pdm-pep517>=0.12.0"]
|
|
build-backend = "pdm.pep517.api"
|
|
|
|
[tool.black]
|
|
|
|
[tool.mypy]
|
|
disallow_untyped_defs = true
|
|
disallow_incomplete_defs = true
|
|
python_version = "3.10"
|
|
strict = true
|
|
show_error_codes = true
|
|
warn_unused_ignores = true
|