wulkabot/pyproject.toml

37 lines
738 B
TOML
Raw Normal View History

2022-03-30 00:20:47 +02:00
[tool.poetry]
2022-03-30 18:11:21 +02:00
name = "wulkabot"
2022-03-30 00:20:47 +02:00
version = "0.1.0"
description = "Discord bot to help manage the Wulkanowy Discord server"
2022-12-02 21:37:48 +01:00
authors = ["JelNiSlaw <jelnislaw@gmail.com>"]
2022-03-30 00:20:47 +02:00
readme = "README.md"
2022-06-03 23:22:20 +02:00
packages = [{ include = "wulkabot" }]
2022-03-30 00:20:47 +02:00
[tool.poetry.dependencies]
2022-12-02 21:37:48 +01:00
python = "^3.11"
"discord.py" = "^2.1"
aiohttp = "^3.8"
python-dotenv = "^0.21"
2022-03-30 00:20:47 +02:00
2022-04-27 00:16:40 +02:00
[tool.poetry.dev-dependencies]
2022-12-02 21:37:48 +01:00
black = "^22.10"
isort = "^5.10"
pyright = "^1.1"
pytest = "^7.2"
2022-03-30 00:20:47 +02:00
[tool.black]
verbose = true
2022-06-03 22:41:13 +02:00
line-length = 100
2022-03-30 00:20:47 +02:00
skip-magic-trailing-comma = true
[tool.isort]
profile = "black"
2022-06-03 22:41:13 +02:00
line_length = 100
2022-03-30 00:20:47 +02:00
[tool.pyright]
typeCheckingMode = "basic"
reportUnnecessaryTypeIgnoreComment = "warning"
2022-03-30 00:20:47 +02:00
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"