-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
96 lines (82 loc) · 2.2 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
[tool.poetry]
name = "Z3R0"
version = "3.7.1"
description = "A multi-purpose open source discord bot"
authors = ["null2264"]
license = "MPL-2.0"
packages = [
{include = "zibot", from = "src"},
{include = "tse", from = "src"}
]
[tool.poetry.scripts]
bot = "zibot.__main__:run"
datamigration = "zibot.__main__:datamigration"
[tool.poetry.dependencies]
python = "^3.10"
beautifulsoup4 = "4.11.1"
"discord.py" = "2.4.0"
discord-ext-menus = "1.1"
fuzzywuzzy = "0.18.0"
humanize = "4.4.0"
jishaku = {git = "https://github.com/Gorialis/jishaku", rev = "0c16ddca174726966704a8f12f6e8f0e26528202"}
Pillow = "9.3.0"
python-dateutil = "2.8.2"
Levenshtein = "0.20.3"
pytz = "2021.3"
pyparsing = "2.4.7"
requests = "2.28.1"
uvloop = {version = "^0.17.0", optional = true}
typing-extensions = "4.4.0"
asyncpg = {version = "*", optional = true}
aiomysql = {version = "*", optional = true}
aiosqlite = ">=0.16.0, <0.18.0"
asyncmy = { version = "^0.2.5", optional = true }
PyNaCl = {version = ">=1.3.0,<1.5", optional = true}
tortoise-orm = "0.19.3"
orjson = {version = "3.8.3", optional = true}
single-source = "0.3.0"
pyzmq = "^25.0.0"
fluent-syntax = "^0.19.0"
fluent-runtime = "^0.4.0"
aerich = "0.7.1"
[tool.poetry.group.dev.dependencies]
black = "^23.0.0"
isort = "^5.10.1"
pre-commit = "^3.0.0"
[tool.poetry.group.test]
optional = true
[tool.poetry.group.test.dependencies]
pytest = "^7.2.0"
pytest-asyncio = "^0.20.3"
dpytest = "^0.6"
[tool.poetry.group.github-actions]
optional = true
[tool.poetry.group.github-actions.dependencies]
pytest-github-actions-annotate-failures = "^0.1.7"
[tool.poetry.extras]
postgresql = ["asyncpg"]
mysql = ["aiomysql"]
"mysql+asyncmy" = ["asyncmy"]
voice = ["PyNaCl"]
speedup = ["uvloop", "orjson"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 125
skip-string-normalization = true
[tool.isort]
profile = "black"
multi_line_output = 3
lines_after_imports = 2
[tool.aerich]
tortoise_orm = "aerichConfig.t"
src_folder = "./."
[tool.pyright]
reportUnnecessaryTypeIgnoreComment = "warning"
reportUnusedImport = "error"
pythonVersion = "3.10"
typeCheckingMode = "basic"
[tool.pytest.ini_options]
pythonpath = ["."]
asyncio_mode = "strict"