-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
49 lines (44 loc) · 1.14 KB
/
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
[project]
name = "Harmony"
version = "1.0.0"
description = "A multipurpose Discord bot with various features."
readme = "README.md"
dependencies = [
"asyncache>=0.3.1",
"asyncpg>=0.30.0",
"asyncpg-stubs>=0.30.0",
"cryptography>=44.0.1",
"cutlet>=0.5.0",
"discord-py[speed]>=2.5.0<2.6.0",
"jishaku",
"langcodes",
"pillow>=11.1.0",
"psutil>=7.0.0",
"pygit2==1.15.1",
"pyjwt>=2.10.1",
"types-cachetools>=5.5.0.20240820",
"types-pillow>=10.2.0.20240822",
"unidic-lite>=1.0.8",
]
requires-python = ">=3.12"
[tool.ruff]
line-length = 125
target-version = "py312"
[tool.ruff.lint]
ignore = ["E731"]
extend-select = ["I", "B", "C4"]
[tool.pyright]
pythonVersion = "3.12"
typeCheckingMode = "strict"
reportIncompatibleMethodOverride = "none"
reportIncompatibleVariableOverride = "none"
reportPrivateUsage = "none"
reportUnnecessaryTypeIgnoreComment = "warning"
reportMissingTypeStubs = "warning"
reportFunctionMemberAccess = "none"
ignore = ["config.py", ".venv"]
venv = ".venv"
venvPath = "./"
stubPath = "./typings"
[tool.uv.sources]
jishaku = { git = "https://github.com/scarletcafe/jishaku", rev = "49374cf" }