-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
62 lines (51 loc) · 1023 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[project]
requires-python = "==3.13.*"
[tool.poetry]
name = "telegram-bot"
description = ""
version = "1.0.0"
authors = ["BlindfoldedSurgery <[email protected]>"]
license = "MIT"
[tool.poetry.dependencies]
python = "~3.13"
httpx = "^0.28.0"
openai = "^1.16.1"
python-telegram-bot = "~21.9"
[tool.poetry.group.dev.dependencies]
mypy = "~1.13"
pytest = "^8.0.0"
ruff = "0.8.3"
[build-system]
requires = ["poetry-core>=1.3.0"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
# strict = true
# check_untyped_defs = true
[[tool.mypy.overrides]]
module = "tests.*"
check_untyped_defs = true
allow_untyped_defs = true
allow_incomplete_defs = true
[tool.pydantic-mypy]
init_forbid_extra = true
init_typed = true
[tool.ruff.lint]
select = [
"E4",
"E7",
"E9",
"F",
"FURB",
"I001",
"LOG",
"Q",
"UP",
]
ignore = [
# redundant-open-modes
"UP015",
]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]
[tool.ruff.lint.isort]
known-first-party = ["telegram_bot"]