-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (31 loc) · 793 Bytes
/
pyproject.toml
File metadata and controls
35 lines (31 loc) · 793 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
35
[project]
name = "my-discord-bot"
version = "5.0.0"
description = "Discord Bot by Reguna"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"aiohttp==3.*",
"aiosqlite==0.*",
"alembic==1.*",
"discord-py[voice]==2.*",
"gallery-dl==1.*",
"google-api-python-client==2.*",
"lavalink==5.*",
"openai==1.*",
"pygit2==1.*",
"python-dotenv==1.*",
"sqlalchemy[asyncio]==2.0.*",
"tzdata",
]
[project.scripts]
my-discord-bot = "my_discord_bot:main"
get-bot-version = "my_discord_bot:get_bot_version"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = ["google-api-python-client-stubs", "ipykernel", "ruff"]
[tool.pyright]
typeCheckingMode = "standard"
reportCallInDefaultInitializer = true