-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
51 lines (44 loc) · 1.08 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
[tool.poetry]
name = "quackstack"
version = "1.1.0"
description = "An on-demand procedural ducky delivery service."
authors = ["vcokltfre <[email protected]>", "ChrisLovering <[email protected]>"]
license = "MIT"
[tool.poetry.dependencies]
python = "3.10.*"
fastapi = "0.109.1"
Pillow = "10.3.0"
aiofiles = "23.2.1"
uvicorn = "0.24.0.post1"
frozendict = "2.3.10"
[tool.poetry.dev-dependencies]
pre-commit = "3.5.0"
ruff = "0.1.7"
taskipy = "1.12.2"
[tool.taskipy.tasks]
lint = "pre-commit run --all-files"
precommit = "pre-commit install"
start-dev = "uvicorn api.main:app --reload"
[tool.ruff]
target-version = "py310"
extend-exclude = [".cache"]
select = ["ALL"]
ignore = [
"ANN002", "ANN003", "ANN101",
"C901",
"CPY001",
"D100", "D104", "D105", "D107", "D203", "D212", "D214", "D215", "D416",
"EM",
"PLR0912",
"TRY003",
]
line-length = 120
unsafe-fixes = true
preview = true
[tool.ruff.isort]
order-by-type = false
case-sensitive = true
combine-as-imports = true
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"