31 lines
689 B
TOML
31 lines
689 B
TOML
[tool.poetry]
|
|
name = "wulkanowy-bot"
|
|
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" }
|
|
python-dotenv = "^0.20.0"
|
|
aiohttp = "^3.8.1"
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
flake8 = "^4.0.1"
|
|
black = "^22.3.0"
|
|
isort = "^5.10.1"
|
|
|
|
[tool.black]
|
|
verbose = true
|
|
line-length = 120
|
|
skip-magic-trailing-comma = true
|
|
|
|
[tool.isort]
|
|
profile = "black"
|
|
line_length = 120
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|