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"
|
2023-06-19 13:09:19 +02:00
|
|
|
"discord.py" = "^2.3"
|
2024-01-30 22:12:57 +01:00
|
|
|
aiohttp = "^3.9"
|
2023-06-19 13:09:19 +02:00
|
|
|
python-dotenv = "^1.0"
|
2023-06-19 22:52:11 +02:00
|
|
|
beautifulsoup4 = "^4.12"
|
2022-03-30 00:20:47 +02:00
|
|
|
|
2022-04-27 00:16:40 +02:00
|
|
|
[tool.poetry.dev-dependencies]
|
2023-06-19 13:09:19 +02:00
|
|
|
black = "^23.3"
|
|
|
|
isort = "^5.12"
|
2022-12-02 21:37:48 +01:00
|
|
|
pyright = "^1.1"
|
2023-06-19 13:09:19 +02:00
|
|
|
pytest = "^7.3"
|
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
|
|
|
|
2022-06-04 15:10:25 +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"
|