-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
55 lines (51 loc) · 1001 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[project]
name = "discord-bot"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = "==3.8.13"
# requires-python = "==3.12"
dependencies = [
"beautifulsoup4",
"fbchat",
"nightcore",
"progressbar2",
"pymongo",
"requests",
"rich",
"translate",
"wikipedia",
"wolframalpha",
"html2text",
"gtts==2.2.1",
"pillow",
"pygithub",
"pyyaml",
"youtube-dl",
"python-dotenv",
"dpy-http-server",
"pexpect",
"dnspython",
"requests-futures",
"torrequest",
"unidecode",
"future",
"selenium",
"fake-useragent",
"colorama",
"groq==0.9.0",
"websockets==12.0",
"py-cord[voice]==2.5.0",
"psycopg2-binary",
"aiofiles>=24.1.0",
"apscheduler>=3.10.4",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["discord_bot"]
[tool.uv]
dev-dependencies = [
"pyright>=1.1.380",
]