-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpyproject.toml
59 lines (54 loc) · 1.04 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
[project]
name = "ghostty-bot"
version = "0.1.0"
description = ""
readme = "README.md"
requires-python = ">=3.12"
authors = [
{ name = "Mitchell Hashimoto", email = "m@mitchellh.com" },
{ name = "trag1c", email = "dev@jakubr.me" },
]
dependencies = [
"discord-py~=2.4",
"githubkit==0.12.11",
"pydantic>=2.10.6,<3",
"python-dotenv==1.0.1",
"sentry-sdk>=2.3.1,<3",
"zig-codeblocks==0.3.0",
"httpx~=0.28.0",
]
[dependency-groups]
dev = [
"ruff~=0.9.6",
"pyright~=1.1.396",
"taplo>=0.9.3",
"pytest>=8.3.5",
"pytest-asyncio>=0.25.3",
]
[tool.pytest.ini_options]
pythonpath = "."
filterwarnings = ["ignore::Warning"]
asyncio_default_fixture_loop_scope = "function"
[tool.ruff]
target-version = "py312"
[tool.ruff.lint]
select = ["ALL"]
ignore = [
"COM",
"ERA",
"D",
"FIX",
"S",
"ANN401",
"ISC001",
"T201",
"TD003",
"PLR2004",
]
mccabe.max-complexity = 20
pylint.max-branches = 20
pylint.max-returns = 15
isort.known-local-folder = ["app"]
[tool.pyright]
typeCheckingMode = "strict"
reportUnknownLambdaType = false