-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
51 lines (44 loc) · 971 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
[project]
name = "meloinf"
version = "0.1.0"
description = "A cross platform bot base on melobot."
authors = [
{name = "aicorein", email = "[email protected]"},
]
dependencies = [
"melobot>=3.1.0",
"melobot[onebot]",
"melobot[cli]",
"uvloop>=0.21.0; sys_platform != 'win32'",
"pillow>=11.0.0",
"psutil>=6.1.1",
"matplotlib>=3.10.0",
]
requires-python = ">=3.12"
readme = "README.md"
license = {text = "AGPL3"}
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.mypy]
follow_imports = "normal"
ignore_missing_imports = true
show_column_numbers = true
check_untyped_defs = true
disallow_untyped_defs = true
warn_return_any = true
warn_redundant_casts = true
disallow_untyped_calls = true
strict_equality = true
[tool.black]
line-length = 100
[tool.isort]
profile = "black"
line_length = 100
[tool.pdm]
distribution = true
[dependency-groups]
dev = [
"ipython>=8.29.0",
"viztracer>=1.0.2",
]