Heimdallr/pyproject.toml

41 lines
958 B
TOML
Raw Normal View History

[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"
[tool.poetry.dependencies]
python = "^3.10"
peewee = "^3.15.1"
2023-02-01 19:16:35 +01:00
naff = "2.1.0"
python-dotenv = "^0.20.0"
captcha = "^0.4"
2023-05-31 20:07:39 +02:00
discord-py-interactions = "^5.5.1"
[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"]
disable = ["C0103", "C0114", "C0115", "C0116", "R0903", "R0913", "E1123"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"