-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (45 loc) · 819 Bytes
/
Copy pathpyproject.toml
File metadata and controls
49 lines (45 loc) · 819 Bytes
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
[project]
name = "telegram-pymorphy-bot"
version = "0.1.0"
description = "Linguistics morphological analysis for russian words in Telegram"
authors = [{ name = "Mark <github.com/super16>" }]
license = "MIT"
readme = "README.md"
requires-python = ">=3.13.3"
dependencies = ["python-telegram-bot==22.3", "pymorphy3==2.0.4", "nltk==3.9.4"]
[dependency-groups]
dev = ["mypy==1.17.1", "ruff==0.12.11"]
[tool.ruff]
extend-exclude = ["tests"]
line-length = 79
target-version = "py313"
[tool.ruff.lint]
ignore = ["S314"]
select = [
"A",
"ANN",
"ASYNC",
"B",
"BLE",
"C4",
"COM",
"E",
"F",
"FBT",
"I",
"ICN",
"N",
"Q",
"PL",
"RET",
"RUF",
"S",
"SIM",
"SLF",
"T20",
"UP",
"W",
"YTT",
]
[tool.ruff.lint.mccabe]
max-complexity = 10