Package operations: 0 installs, 5 updates, 0 removals • Updating multidict (5.2.0 -> 6.0.2) • Updating pyparsing (3.0.6 -> 3.0.7) • Updating regex (2021.11.10 -> 2022.1.18) • Updating sqlalchemy (1.4.29 -> 1.4.31) • Updating types-dateparser (1.0.12 -> 1.0.13)
46 lines
1.1 KiB
TOML
46 lines
1.1 KiB
TOML
[tool.poetry]
|
|
name = "discord-reminder-bot"
|
|
version = "0.2.0"
|
|
description = "Discord bot that allows you to set date, cron and interval reminders."
|
|
authors = ["Joakim Hellsén <tlovinator@gmail.com>"]
|
|
license = "GPL-3.0-or-later"
|
|
readme = "README.md"
|
|
homepage = "https://github.com/TheLovinator1/discord-reminder-bot"
|
|
repository = "https://github.com/TheLovinator1/discord-reminder-bot"
|
|
keywords = [
|
|
"bot",
|
|
"discord",
|
|
"discord-reminder-bot",
|
|
"discord-py-slash-command",
|
|
]
|
|
|
|
[tool.poetry.urls]
|
|
"Bug Tracker" = "https://github.com/TheLovinator1/discord-reminder-bot/issues"
|
|
|
|
[tool.poetry.scripts]
|
|
bot = "discord_reminder_bot.main:start"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.9"
|
|
"discord.py" = "^1.7.3"
|
|
python-dotenv = "^0.19.2"
|
|
discord-py-slash-command = "^3.0.3"
|
|
APScheduler = "^3.8.1"
|
|
dateparser = "^1.1.0"
|
|
SQLAlchemy = "^1.4.31"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
pytest = "^6.2.5"
|
|
black = {version = "^21.12b0", allow-prereleases = true}
|
|
flake8 = "^4.0.1"
|
|
mypy = "^0.930"
|
|
types-pytz = "^2021.3.3"
|
|
types-dateparser = "^1.0.10"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.black]
|
|
line-length = 119
|