Heimdallr/pyproject.toml

33 lines
781 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.dependencies]
python = "^3.10"
peewee = "^3.15.1"
naff = "^1.7.1"
orjson = "^3.7.8"
python-dotenv = "^0.20.0"
captcha = "^0.4"
[tool.poetry.dev-dependencies]
black = "^22.6.0"
pylint = "^2.14.5"
[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"