Use Poetry

This commit is contained in:
2021-07-23 21:26:46 +02:00
parent b50f7d1d5a
commit dc911b4a18
7 changed files with 810 additions and 20 deletions

22
pyproject.toml Normal file
View File

@ -0,0 +1,22 @@
[tool.poetry]
name = "discord-reminder-bot"
version = "0.1.0"
description = ""
authors = ["Joakim Hellsén <tlovinator@gmail.com>"]
[tool.poetry.dependencies]
python = "^3.9"
"discord.py" = "^1.7.3"
python-dotenv = "^0.18.0"
discord-py-slash-command = "^2.3.2"
APScheduler = "^3.7.0"
dateparser = "^1.0.0"
SQLAlchemy = "^1.4.22"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
black = {version = "^21.7b0", allow-prereleases = true}
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"