-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (61 loc) · 1.61 KB
/
pyproject.toml
File metadata and controls
68 lines (61 loc) · 1.61 KB
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
[tool.poetry]
name = "speedboat"
version = "1.1.0"
description = "A Discord bot for managing large communities"
authors = [
"Dj Isaac <contact@dejay.dev>"
]
license = "LICENSE.md"
readme = "README.md"
homepage = "https://docs.speedboat.rocks"
repository = "https://github.com/dejaydev/speedboat"
documentation = "https://docs.speedboat.rocks"
package-mode = false
[tool.poetry.dependencies]
python = "^3.12"
aenum = "^3.1.15"
cairosvg = "^2.7.1"
certifi = "^2024.7.4"
click = "^8.1.7"
datadog = "^0.49.1"
dill = "^0.3.8"
emoji = "^2.12.1"
faust-cchardet = "^2.1.19"
Flask = "^2.3.3"
gevent-inotifyx = "^0.2"
humanize = "^4.10.0"
markovify = "^0.9.4"
modern-colorthief = "^0.1.6"
oauthlib = "^3.2.2"
peewee = "^3.17.6"
Pillow = "^10.4.0"
psycopg = {version = "^3.2.1", extras = ["binary"]}
pygal = "^3.0.5"
pynacl = "^1.5.0"
pytz = "^2024.1"
pyyaml = "^6.0.2"
rapidfuzz = "^3.9.6"
redis = "^5.0.8"
requests-oauthlib = "^2.0.0"
sentry-sdk = "^2.13.0"
urllib3 = "^2.2.2"
wheel = "^0.44.0"
# redis needs these, but for some reason i need to define them.
aiohttp = "^3.10.5"
async-timeout = "^4.0.3"
# https://github.com/elderlabs/BetterDisco/tree/staging/dooley
[tool.poetry.dependencies.betterdisco-py]
rev = "e6034adadce315e6fdb7e426f23ec65cfe5e3fe1"
git = "https://github.com/elderlabs/betterdisco"
extras = ["performance"]
[tool.poe.tasks.bot]
help = "Start the Speedbot bot"
args = [{ name = "env", required = false }]
script = "manage:bot()"
[tool.ruff]
line-length = 320 # This is the maximum for Ruff
[tool.ruff.lint]
ignore = ["E722"] # STOP IT
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"