-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (39 loc) · 872 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
[project]
name = "meloinf"
version = "0.1.0"
description = "A cross platform bot base on melobot."
authors = [
{name = "aicorein", email = "aicorein@meloland.org"},
]
dependencies = [
"melobot[onebot]>=3.0.0",
"uvloop>=0.21.0; sys_platform != 'win32'",
"pillow>=11.0.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
[tool.pdm.dev-dependencies]
dev = [
"ipython>=8.29.0",
]