40 lines
923 B
TOML
40 lines
923 B
TOML
[tool.poetry]
|
|
name = "heimdallr"
|
|
version = "0.1.0"
|
|
description = "A moderation and general-purpose Discord bot, originally intended for the Norwegian Language Learning community."
|
|
authors = ["Vegard Berg <vgberg@gmail.com>"]
|
|
|
|
[tool.poetry.scripts]
|
|
heimdallr = "heimdallr.Heimdallr:main"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.10"
|
|
peewee = "^3.15.1"
|
|
naff = "2.1.0"
|
|
python-dotenv = "^0.20.0"
|
|
captcha = "^0.4"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
black = "^22.6.0"
|
|
pylint = "^2.14.5"
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
mkdocs = "^1.4.1"
|
|
mkdocs-material = "^8.5.6"
|
|
mypy = "^1.0.0"
|
|
|
|
[tool.pylint.main]
|
|
fail-under = 8
|
|
py-version = "3.10"
|
|
|
|
[tool.pylint.basic]
|
|
argument-naming-style = "snake_case"
|
|
attr-naming-style = "snake_case"
|
|
|
|
[tool.pylint."messages control"]
|
|
disable = ["C0103", "C0114", "C0115", "C0116", "R0903", "R0913", "E1123"]
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|