-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
48 lines (40 loc) · 917 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
[tool.poetry]
name = "codetri-webhook"
version = "0.5.0"
description = "A small webhook responder"
authors = ["Caleb <le717@users.noreply.github.com>"]
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = "^3.11"
flask = "^3.0.3"
gunicorn = "^23.0.0"
supervisor = "^4.2.5"
sys-vars = "^5.1.0"
[tool.poetry.group.dev]
[tool.poetry.group.dev.dependencies]
ruff = "*"
mypy = "*"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
indent-width = 4
line-length = 100
[tool.ruff.format]
preview = true
line-ending = "native"
indent-style = "space"
quote-style = "double"
[tool.ruff.lint]
extend-select = [
"ERA", # eradicate
"I", # isort,
"TD", # flake8-todos
"PTH", # flake8-use-pathlib
"UP", # pyupgrade
"SIM", # flake8-simplify
]
[tool.ruff.lint.isort]
lines-after-imports = 2
extra-standard-library = ["tomllib", "zoneinfo"]