wulkabot/pyproject.toml
2022-06-03 22:41:13 +02:00

31 lines
678 B
TOML

[tool.poetry]
name = "wulkabot"
version = "0.1.0"
description = "Discord bot to help manage the Wulkanowy Discord server"
authors = ["JelNiSław <jelnislaw@gmail.com>"]
readme = "README.md"
packages = [{ include = "bot" }]
[tool.poetry.dependencies]
python = "^3.10"
"discord.py" = { git = "https://github.com/Rapptz/discord.py" }
aiohttp = "^3.8.1"
python-dotenv = "^0.20.0"
[tool.poetry.dev-dependencies]
black = "^22.3.0"
isort = "^5.10.1"
pytest = "^7.1.2"
[tool.black]
verbose = true
line-length = 100
skip-magic-trailing-comma = true
[tool.isort]
profile = "black"
line_length = 100
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"