-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
37 lines (35 loc) · 1007 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
[project]
authors = [{ name = "seriaati", email = "[email protected]" }]
dependencies = [
"aiohttp-client-cache>=0.12.3",
"aiofiles>=24.1.0",
"jishaku>=2.5.2",
"python-dotenv>=1.0.1",
"pyyaml>=6.0.2",
"tortoise-orm[asyncpg]>=0.21.6",
"seria-library>=1.5.4",
"uvloop>=0.20.0; platform_system == 'Linux'",
"discord-py>=2.4.0",
"loguru>=0.7.2",
"aerich>=0.8.0",
"pydantic>=2.10.4",
]
description = "Discord bot that fixes social media embeds"
license = { file = "LICENSE" }
name = "embed-fixer"
readme = "README.md"
requires-python = ">=3.11"
version = "1.5.1"
[tool.pyright]
enableTypeIgnoreComments = false
reportIncompatibleMethodOverride = false
reportIncompatibleVariableOverride = false
reportUnnecessaryComparison = true
reportUnnecessaryContains = true
reportUnnecessaryIsInstance = true
reportUnnecessaryTypeIgnoreComment = true
typeCheckingMode = "standard"
[tool.aerich]
tortoise_orm = "embed_fixer.db_config.TORTOISE_CONFIG"
location = "./migrations"
src_folder = "./."