forked from SylteA/Discord-Bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
38 lines (32 loc) · 871 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[tool.poetry]
name = "discord-bot"
version = "4"
description = "Discord bot for Tech With Tim's discord server."
authors = ["Tech With Tim Community"]
[tool.poetry.scripts]
bot = "cli:main"
[tool.poetry.dependencies]
python = "^3.10"
click = "^8.1.3"
asyncpg = "^0.27.0"
discord-py = "^2.2.3"
python-dateutil = "^2.8.2"
pydantic = {extras = ["dotenv"], version = "^1.10.7"}
jishaku = {extras = ["procinfo", "profiling"], version = "^2.5.1"}
beautifulsoup4 = "^4.12.2"
tabulate = "^0.9.0"
pillow = "^10.1.0"
codingame = {extras = ["async"], version = "^1.4.2"}
[tool.poetry.group.dev.dependencies]
isort = "^5.12.0"
black = {extras = ["d"], version = "^23.7.0"}
flake8 = "^6.0.0"
pre-commit = "^3.3.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
[tool.isort]
profile = 'black'
line_length = 120