forked from modmail-dev/Modmail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
69 lines (66 loc) · 1.69 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
[tool.poetry]
name = 'Modmail'
version = '4.1.0'
description = "Modmail is similar to Reddit's Modmail, both in functionality and purpose. It serves as a shared inbox for server staff to communicate with their users in a seamless way."
license = 'AGPL-3.0-only'
authors = [
'kyb3r <[email protected]>',
'4jr <[email protected]>',
'Taki <[email protected]>'
]
readme = 'README.md'
repository = 'https://github.com/modmail-dev/modmail'
homepage = 'https://github.com/modmail-dev/modmail'
keywords = ['discord', 'modmail']
packages = [
{include = "cogs"},
{include = "modmail"},
{include = "plugins"}
]
[tool.poetry.dependencies]
python = "^3.8"
aiodns = "^3.1.1"
aiohttp = "^3.9.0"
aiosignal = "^1.3.1"
async-timeout = {version = "^4.0.3", python = "<3.11"}
attrs = "^23.1.0"
brotli = "^1.1.0"
cairocffi = "^1.6.1"
cairosvg = "^2.7.1"
certifi = "*"
cffi = "^1.16.0"
charset-normalizer = "^3.3.2"
colorama = "^0.4.6"
cssselect2 = "^0.7.0"
defusedxml = "^0.7.1"
discord-py = {version = "^2.3.2", extras = ["speed"]}
dnspython = "^2.4.2"
emoji = "^2.8.0"
frozenlist = "^1.4.0"
idna = "^3.4"
isodate = "^0.6.1"
lottie = {version = "^0.7.0", extras = ["pdf"]}
motor = "^3.3.2"
multidict = "^6.0.4"
natural = "^0.2.0"
orjson = "^3.9.10"
packaging = "^23.2"
parsedatetime = "^2.6"
pillow = "^10.1.0"
pycares = "^4.4.0"
pycparser = "^2.21"
pymongo = {version = "^4.6.0", extras = ["srv"]}
python-dateutil = "^2.8.2"
python-dotenv = "^1.0.0"
requests = "^2.31.0"
six = "^1.16.0"
tinycss2 = "^1.2.1"
urllib3 = "^2.1.0"
uvloop = "^0.19.0"
webencodings = "^0.5.1"
yarl = "^1.9.3"
[tool.poetry.scripts]
modmail = "modmail:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"