-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
69 lines (64 loc) · 1.26 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[project]
name = "starrail_damage_cal"
version = "2.0.0"
description = "For StarRail Role Damage Cal"
authors = [
{name = "qwerdvd", email = "[email protected]"},
]
dependencies = [
"msgspec>=0.18.6",
"httpx>=0.27.0",
]
repository = "https://github.com/baiqwerdvd/StarRailDamageCal"
requires-python = ">=3.8"
readme = "README.md"
license = {text = "MIT"}
packages = [{ include = "starrail_damage_cal" }]
[tool.ruff]
select = ["ALL"]
ignore = [
"E402",
"B008",
"F403",
"F405",
"RET505",
"N816",
"N815",
"ANN101",
"N806",
"FA100",
"PLR",
"C901",
"N803",
"N802",
"ANN",
"ERA001",
"E501",
"D",
"N999",
"ARG",
"COM812",
"N801",
"ISC",
"TID252"
]
line-length = 88
target-version = "py38"
ignore-init-module-imports = true
[tool.pdm.dev-dependencies]
test = [
"pytest>=7.4.3",
"pytest-asyncio>=0.21.1",
"pytest-cov>=4.1.0",
]
lint = [
"ruff>=0.1.3",
]
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pyright]
reportShadowedImports = false
pythonVersion = "3.8"
pythonPlatform = "All"
executionEnvironments = [{ root = "./starrail_damage_cal/" }]