-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
88 lines (78 loc) · 1.37 KB
/
Copy pathpyproject.toml
File metadata and controls
88 lines (78 loc) · 1.37 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
[tool.poetry]
authors = ["Paul Fischer <paul_fischer94@hotmail.com>"]
description = "Small package to analyse performance against low level accounts."
name = "lol-stats"
packages = [{include = "lol_stats", from = "src"}]
readme = "README.md"
version = "0.1.0"
[tool.poetry.dependencies]
colorlog = "^6.7.0"
pydantic = "^2"
python = "^3.10"
riotwatcher = "^3.2.4"
tqdm = "^4.65.0"
matplotlib = "^3.7.1"
seaborn = "^0.12.2"
[tool.poetry.group.develop.dependencies]
black = "^23.1.0"
mypy = "^1.1.1"
ruff = "^0.0.257"
jupyterlab = "^4"
pre-commit = "^3.7.0"
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core"]
[tool.ruff]
fix = true
line-length = 88
src = ["src", "tests"]
target-version = "py310"
[tool.ruff.lint]
select = [
"F",
"E",
"W",
"C90",
"I",
"N",
"D",
"UP",
"S",
"BLE",
"FBT",
"B",
"A",
"COM",
"C4",
"DTZ",
"EXE",
"ISC",
"INP",
"PT",
"T20",
"RET",
"SLF",
"SIM",
"TID",
"ERA",
"PD",
"PL",
"NPY",
"RUF",
]
[tool.ruff.lint.isort]
known-first-party = ["src/lol_stats"]
[tool.ruff.lint.pydocstyle]
convention = "numpy"
[tool.black]
line-length = 88
target-version = ["py310"]
[tool.mypy]
check_untyped_defs = true
disallow_untyped_defs = true
ignore_missing_imports = false
python_version = "3.10"
warn_unreachable = true
[[tool.mypy.overrides]]
ignore_missing_imports = true
module = "requests.*"