2022-07-21 20:50:23 +02:00
|
|
|
[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>"]
|
|
|
|
|
2022-10-15 02:51:21 +02:00
|
|
|
[tool.poetry.scripts]
|
|
|
|
heimdallr = "heimdallr.Heimdallr:main"
|
|
|
|
|
2022-07-21 20:50:23 +02:00
|
|
|
[tool.poetry.dependencies]
|
|
|
|
python = "^3.10"
|
|
|
|
peewee = "^3.15.1"
|
2023-02-01 19:16:35 +01:00
|
|
|
naff = "2.1.0"
|
2022-07-21 20:50:23 +02:00
|
|
|
python-dotenv = "^0.20.0"
|
2022-08-04 03:52:53 +02:00
|
|
|
captcha = "^0.4"
|
2022-07-21 20:50:23 +02:00
|
|
|
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
|
|
black = "^22.6.0"
|
2022-07-21 21:27:47 +02:00
|
|
|
pylint = "^2.14.5"
|
|
|
|
|
2022-10-16 01:18:53 +02:00
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
|
|
mkdocs = "^1.4.1"
|
|
|
|
mkdocs-material = "^8.5.6"
|
2023-02-24 12:51:47 +01:00
|
|
|
mypy = "^1.0.0"
|
2022-10-16 01:18:53 +02:00
|
|
|
|
2022-07-21 21:27:47 +02:00
|
|
|
[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"]
|
2022-08-04 04:34:19 +02:00
|
|
|
disable = ["C0103", "C0114", "C0115", "C0116", "R0903", "R0913", "E1123"]
|
2022-07-21 20:50:23 +02:00
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core>=1.0.0"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|