-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
48 lines (41 loc) · 1.04 KB
/
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
39
40
41
42
43
44
45
46
47
48
[tool.poetry]
name = "warnet-bot"
version = "1.11.0"
description = "A bot for Warga Nusantara Teyvat (WARNET) discord server"
authors = ["Iqrar Agalosi Nureyza <misteriqrar@gmail.com>"]
repository = "https://github.com/warnet-gi/WarnetBot"
package-mode = false
[tool.poetry.dependencies]
asyncpg = "^0.27.0"
discord-py = "^2.4.0"
feedparser= "^6.0.11"
imagetext-py = "^2.1.3"
pillow = "^10.0.0"
python = "^3.10"
python-dotenv = "^0.21.1"
pytz = "^2022.7.1"
ratelimit = "^2.2.1"
taskipy = "^1.12.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.1"
black = "^24.3.0"
isort = "^5.12.0"
pytest-cov = "^4.1.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 100
target-version = ["py39", "py310", "py311"]
skip-string-normalization = true
[tool.isort]
profile = "black"
py_version = 310
split_on_trailing_comma = true
force_alphabetical_sort_within_sections = true
multi_line_output = 5
group_by_package = true
line_length = 100
skip_gitignore = true
[tool.taskipy.tasks]
start = "python -m bot"