-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
40 lines (35 loc) · 958 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
39
40
[tool.black]
line-length = 120
target-version = ["py310"]
include = ".*py$"
[tool.isort]
profile = "black"
force_single_line = false
[tool.poetry]
name = "snedbot"
version = "0.1.0" # I do not actually update this, lol
description = "Your friendly neighbourhood multi-purpose Discord bot."
authors = ["HyperGH <[email protected]>"]
license = "GNU GPL-v3"
[tool.poetry.dependencies]
python = ">=3.10,<3.11"
dateparser = "^1.1.5"
psutil = "^5.9.4"
Pillow = "^9.3.0"
asyncpg = "^0.27.0"
Levenshtein = "^0.20.9"
uvloop = {version = "==0.17.0", platform="linux"}
aiodns = "~=3.0"
cchardet = "~=2.1"
Brotli = "~=1.0"
ciso8601 = "~=2.3"
kosu = {git = "https://github.com/HyperGH/kosu.git", branch="main"}
hikari-lightbulb = "==2.3.1"
hikari-miru = "==2.0.2"
[tool.poetry.dev-dependencies]
black = "^22.12"
isort = "^5.11.4"
nox = "==2022.11.21"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"