-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (48 loc) · 1.33 KB
/
Copy pathpyproject.toml
File metadata and controls
52 lines (48 loc) · 1.33 KB
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
[project]
authors = [{ name = "seriaati", email = "seria.ati@gmail.com" }]
dependencies = [
"aiofiles>=24.1.0",
"jishaku>=2.5.2",
"python-dotenv>=1.0.1",
"pyyaml>=6.0.2",
"tortoise-orm>=0.21.6",
"uvloop>=0.20.0; platform_system == 'Linux'",
"discord-py>=2.4.0",
"loguru>=0.7.2",
"pydantic>=2.10.4",
"redis[hiredis]>=6.2.0",
"aiohttp-client-cache>=0.13.0",
"aiosqlite==0.22.1",
"iso639-lang>=2.6.3",
"emoji>=2.15.0",
"sentry-sdk>=2.39.0",
"tomli>=2.2.1",
"pydantic-settings>=2.11.0",
"anyio>=4.12.1",
"pillow>=11.0.0",
"ffmpeg-python>=0.2.0",
]
description = "Discord bot that fixes social media embeds"
license = { file = "LICENSE" }
name = "embed-fixer"
readme = "README.md"
requires-python = ">=3.11"
version = "1.9.5"
[project.optional-dependencies]
asyncpg = ["asyncpg>=0.31.0"]
[tool.pyright]
venvPath = "."
venv = ".venv"
enableTypeIgnoreComments = false
reportIncompatibleMethodOverride = false
reportIncompatibleVariableOverride = false
reportUnnecessaryComparison = true
reportUnnecessaryContains = true
reportUnnecessaryIsInstance = true
reportUnnecessaryTypeIgnoreComment = true
typeCheckingMode = "standard"
exclude = ["migrations", "**/node_modules", "**/__pycache__", "**/.*", ".venv"]
[dependency-groups]
dev = ["asyncpg>=0.31.0"]
[tool.tortoise]
tortoise_orm = "embed_fixer.core.db_config.TORTOISE_ORM"