-
Notifications
You must be signed in to change notification settings - Fork 110
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (41 loc) · 1.01 KB
/
pyproject.toml
File metadata and controls
48 lines (41 loc) · 1.01 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
[project]
name = "botli"
version = "0.1.0"
description = "A highly configurable interface between Lichess API and UCI chess engines"
readme = "README.md"
requires-python = ">=3.11"
license = "AGPL-3.0-or-later"
authors = [
{ name = "Torsten Hellwig" }
]
dependencies = [
"aiohttp[speedups]==3.13.5",
"chess==1.11.2",
"prompt-toolkit==3.0.52",
"psutil==7.2.2",
"pyyaml==6.0.3",
"tenacity==9.1.4",
]
[dependency-groups]
dev = [
"pyright",
"ruff",
]
[project.urls]
Homepage = "https://github.com/Torom/BotLi"
Issues = "https://github.com/Torom/BotLi/issues"
Discord = "https://discord.gg/6aS945KMFD"
[tool.uv]
default-groups = []
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = ["ARG", "ASYNC", "B", "C4", "E", "F", "FIX", "FURB", "I", "N", "PERF", "PIE", "PL", "RET", "RUF", "SIM", "SLF", "UP", "W"]
ignore = ["ASYNC109", "PLR2004", "RET502", "RET503", "SIM103"]
fixable = ["ALL"]
unfixable = []
[tool.ruff.lint.pylint]
max-args = 10
max-statements = 100
max-returns = 24
max-branches = 24