Use Poetry

This commit is contained in:
2021-10-28 15:30:00 +02:00
parent 9858d5eae6
commit f3fb957717
3 changed files with 1255 additions and 8 deletions

18
pyproject.toml Normal file
View File

@ -0,0 +1,18 @@
[tool.poetry]
name = "discord-nice-embed-maker"
version = "0.1.0"
description = ""
authors = ["Joakim Hellsén <tlovinator@gmail.com>"]
[tool.poetry.dependencies]
python = "^3.9"
fastapi = {extras = ["all"], version = "^0.70.0"}
dhooks = {git = "https://github.com/kyb3r/dhooks"}
[tool.poetry.dev-dependencies]
pytest = "^5.2"
black = {version = "^21.9b0", allow-prereleases = true}
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"