Package operations: 0 installs, 15 updates, 0 removals • Updating astroid (2.9.1 -> 2.9.3) • Updating frozenlist (1.2.0 -> 1.3.0) • Updating anyio (3.4.0 -> 3.5.0) • Updating charset-normalizer (2.0.9 -> 2.0.10) • Updating dnspython (2.1.0 -> 2.2.0) • Updating pylint-plugin-utils (0.6 -> 0.7) • Updating h11 (0.12.0 -> 0.13.0) • Updating urllib3 (1.26.7 -> 1.26.8) • Updating gitpython (3.1.24 -> 3.1.26) • Updating pylint-django (2.4.4 -> 2.5.0) • Updating requests (2.27.0 -> 2.27.1) • Updating prospector (1.5.3.1 -> 1.6.0) • Updating pygments (2.11.1 -> 2.11.2) • Updating starlette (0.16.0 -> 0.17.1) • Updating fastapi (0.70.1 -> 0.72.0
34 lines
897 B
TOML
34 lines
897 B
TOML
[tool.poetry]
|
|
name = "discord-embed"
|
|
version = "0.1.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"]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.9"
|
|
fastapi = {extras = ["all"], version = "^0.72.0"}
|
|
ffmpeg-python = "^0.2.0"
|
|
gunicorn = "^20.1.0"
|
|
uvicorn = "^0.15.0"
|
|
python-dotenv = "^0.19.2"
|
|
dhooks = {git = "https://github.com/kyb3r/dhooks.git"}
|
|
Pygments = "^2.11.2"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
pytest = "^5.2"
|
|
black = { version = "^21.9b0", allow-prereleases = true }
|
|
mypy = "^0.910"
|
|
prospector = "^1.5.1"
|
|
bandit = "^1.7.0"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.black]
|
|
line-length = 119 |