-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
58 lines (52 loc) · 1.03 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
[project]
requires-python = "==3.13.*"
name = "telegram-bot"
version = "1.0.0"
description = ""
authors = [{ name = "BlindfoldedSurgery", email = "[email protected]" }]
classifiers = [
"Private :: Do Not Upload",
"License :: OSI Approved :: MIT License",
]
dependencies = [
"bs-config [dotenv] ==1.1.1",
"httpx ==0.28.*",
"python-telegram-bot ==21.10",
"python-levenshtein ==0.26.1",
"sentry-sdk ==2.20.*",
"timhatdiehandandermaus-sdk ==3.1.0",
]
[dependency-groups]
dev = [
"mypy ==1.14.*",
"pytest >=8, <9",
"ruff ==0.9.1",
]
[[tool.uv.index]]
name = "internal"
url = "https://pypi.bjoernpetersen.net"
explicit = true
[tool.uv.sources]
bs-config = { index = "internal" }
timhatdiehandandermaus-sdk = { index = "internal" }
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff.lint]
select = [
"E4",
"E7",
"E9",
"F",
"FURB",
"G",
"I001",
"LOG",
"PTH",
"Q",
"UP",
]
ignore = [
# redundant-open-modes
"UP015",
]