forked from modmail-dev/Modmail
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathPipfile
More file actions
34 lines (31 loc) · 964 Bytes
/
Pipfile
File metadata and controls
34 lines (31 loc) · 964 Bytes
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
[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true
[dev-packages]
bandit = ">=1.7.5"
black = "==23.11.0"
pylint = "==3.0.2"
tomli = "==2.2.1" # Needed for black on Python < 3.11
[packages]
aiohttp = "==3.13.2"
async-timeout = {version = "==5.0.1", markers = "python_version < '3.11'"} # Required by aiohttp
typing-extensions = ">=4.12.2" # Required by aiohttp
colorama = "==0.4.6"
"discord.py" = {version = "==2.6.3", extras = ["speed"]}
emoji = "==2.8.0"
isodate = "==0.6.1"
motor = "==3.7.1"
natural = "==0.2.0" # Why is this needed?
packaging = "==23.2"
parsedatetime = "==2.6"
dnspython = ">=2.8,<3" # Required by pymongo
pymongo = ">=4.9,<5" # Required by motor
python-dateutil = "==2.8.2"
python-dotenv = "==1.0.0"
uvloop = {version = ">=0.19.0", markers = "sys_platform != 'win32'"}
lottie = {version = "==0.7.2", extras = ["pdf"]}
setuptools = "*" # Needed for lottie
requests = "==2.31.0"
[scripts]
bot = "python bot.py"