-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
pyproject.toml
40 lines (36 loc) · 956 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.poetry]
name = "mediaforge"
version = "2.0.0"
description = "A Discord bot for editing and creating videos, images, GIFs, and more!"
authors = ["reticivis"]
license = "GPL-3.0"
package-mode = false
[tool.poetry.dependencies]
python = "^3.11"
"discord.py" = "^2.4.0"
# dpy extras minus aiodns
Brotli = "*"
orjson = ">=3.5.4"
aiofiles = "^24.1.0"
humanize = "^4.8.0"
coloredlogs = "^15.0.1"
Pillow = "^10.0.1"
regex = "^2024.9.11"
aiosqlite = "^0.20.0"
psutil = "^6.0.0"
apng = "^0.3.4"
docstring-parser = "^0.16"
yt-dlp = "^2024.4.9"
emojis = "^0.7.0"
python-magic = { version = "^0.4.13", markers = "sys_platform != 'win32'" }
python-magic-win64 = { version = "^0.4.13", markers = "sys_platform == 'win32'" }
requests = "^2.31.0"
"discordlists.py" = "^1.1.1"
pyvips = "^2.2.1"
tblib = "^3.0.0"
audioop-lts = {version = "^0.2.1", python = ">=3.13"}
[build-system]
requires = [
"poetry-core>=1.0.0",
]
build-backend = "poetry.core.masonry.api"