59 lines
1.3 KiB
TOML
59 lines
1.3 KiB
TOML
[tool.poetry]
|
|
name = "discord-reminder-bot"
|
|
version = "0.1.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.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 }
|
|
flake8 = "^3.9.2"
|
|
mypy = "^0.910"
|
|
types-pytz = "^2021.1.0"
|
|
pydocstyle = "^6.1.1"
|
|
types-dateparser = "^1.0.1"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.black]
|
|
line-length = 119
|
|
exclude = '''
|
|
/(
|
|
\.git
|
|
| \.hg
|
|
| \.mypy_cache
|
|
| \.tox
|
|
| \.venv
|
|
| build
|
|
| dist
|
|
| migrations
|
|
)/
|
|
'''
|