Files
discord-rss-bot/pyproject.toml
2022-12-14 00:27:20 +01:00

34 lines
711 B
TOML

[tool.poetry]
name = "discord-rss-bot"
version = "0.1.0"
description = "RSS bot for Discord"
authors = ["Joakim Hellsén <tlovinator@gmail.com>"]
[tool.poetry.dependencies]
python = "^3.11"
reader = "^3.2"
discord-webhook = "^1.0.0"
platformdirs = "^2.6.0"
fastapi = "^0.88.0"
uvicorn = {extras = ["standard"], version = "^0.20.0"}
jinja2 = "^3.1.2"
apscheduler = "^3.9.1.post1"
python-multipart = "^0.0.5"
python-dotenv = "^0.21.0"
tomlkit = "^0.11.6"
[tool.poetry.group.dev.dependencies]
pytest = "^7.1.3"
httpx = "^0.23.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
[tool.black]
line-length = 120
target-version = ["py311"]