-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
70 lines (61 loc) · 1.21 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
59
60
61
62
63
64
65
66
67
68
69
70
[project]
requires-python = "==3.13.*"
[tool.poetry]
name = "vodka-az"
description = "Vodka A-Z"
version = "1.0.0"
authors = ["OpenAlcoholics <[email protected]>"]
license = "MIT"
packages = [
{ include = "az", from = "src" }
]
[[tool.poetry.source]]
name = "internal"
url = "https://pypi.bjoernpetersen.net"
priority = "explicit"
[tool.poetry.dependencies]
bs-config = { version = "1.1.1", extras = ["dotenv"], source = "internal" }
certifi = "2024.8.30"
click = "^8.1.3"
# dictated by python-telegram-bot
httpx = "*"
openai = "^1.0.0"
python = "~3.13"
python-telegram-bot = "21.9"
sentry-sdk = "^2.0.0"
[tool.poetry.group.dev.dependencies]
mypy = "~1.13"
pytest = "^8.0.0"
ruff = "0.8.2"
types-requests = "^2.28.11"
[build-system]
requires = ["poetry-core>=1.3.0"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
strict = true
warn_return_any = false
[[tool.mypy.overrides]]
module = "tests.*"
strict = false
check_untyped_defs = true
disallow_untyped_defs = false
[tool.ruff.lint]
select = [
"E4",
"E7",
"E9",
"F",
"FURB",
"G",
"I001",
"LOG",
"PTH",
"Q",
"UP",
]
ignore = [
# redundant-open-modes
"UP015",
]
[tool.ruff.lint.isort]
known-first-party = ["az"]