Update dependencies
This commit is contained in:
@ -3,30 +3,38 @@ name = "discord-embed"
|
||||
version = "1.0.0"
|
||||
description = "Make nice embeds for Discord"
|
||||
authors = ["Joakim Hellsén <tlovinator@gmail.com>"]
|
||||
license = "GPL-3.0"
|
||||
readme = "README.md"
|
||||
homepage = "https://github.com/TheLovinator1/discord-embed"
|
||||
repository = "https://github.com/TheLovinator1/discord-embed"
|
||||
keywords = ["website", "discord"]
|
||||
license = "GPL-3.0-or-later"
|
||||
|
||||
[tool.poetry.dependencies]
|
||||
python = "^3.10"
|
||||
python = "^3.12"
|
||||
fastapi = "^0.104.0"
|
||||
ffmpeg-python = "^0.2.0"
|
||||
discord-webhook = "^1.0.0"
|
||||
discord-webhook = "^1.3.0"
|
||||
python-multipart = "^0.0.6"
|
||||
python-dotenv = "^1.0.0"
|
||||
Jinja2 = "^3.1.2"
|
||||
uvicorn = {extras = ["standard"], version = "^0.23.0"}
|
||||
jinja2 = "^3.1.2"
|
||||
uvicorn = { extras = ["standard"], version = "^0.23.0" }
|
||||
|
||||
[tool.poetry.group.dev.dependencies]
|
||||
httpx = "^0.25.0"
|
||||
pytest = "^7.1.1"
|
||||
pytest = "^7.4.3"
|
||||
|
||||
[build-system]
|
||||
requires = ["poetry-core>=1.0.0"]
|
||||
build-backend = "poetry.core.masonry.api"
|
||||
|
||||
[tool.black]
|
||||
line-length = 119
|
||||
[tool.ruff]
|
||||
fix = true
|
||||
preview = true
|
||||
select = ["ALL"]
|
||||
ignore = ["D100", "CPY001"]
|
||||
|
||||
[tool.ruff.pydocstyle]
|
||||
convention = "google"
|
||||
|
||||
[tool.ruff.per-file-ignores]
|
||||
"tests/**/*.py" = [
|
||||
"S101", # asserts allowed in tests...
|
||||
"ARG", # Unused function args -> fixtures nevertheless are functionally relevant...
|
||||
"FBT", # Don't care about booleans as positional arguments in tests, e.g. via @pytest.mark.parametrize()
|
||||
]
|
||||
|
Reference in New Issue
Block a user