wulkabot/pyproject.toml

40 lines
874 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"
authors = ["JelNiSław <jelnislaw@gmail.com>"]
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]
python = "^3.10"
2022-04-27 00:16:40 +02:00
"discord.py" = { git = "https://github.com/Rapptz/discord.py" }
2022-03-30 00:20:47 +02:00
aiohttp = "^3.8.1"
2022-03-30 22:45:10 +02:00
python-dotenv = "^0.20.0"
2022-03-30 00:20:47 +02:00
2022-04-27 00:16:40 +02:00
[tool.poetry.dev-dependencies]
2022-03-30 00:20:47 +02:00
black = "^22.3.0"
isort = "^5.10.1"
pyright = "^1.1.251"
2022-06-03 22:41:13 +02:00
pytest = "^7.1.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"
[[build.buildpacks]]
uri = "https://github.com/heroku/heroku-buildpack-python"