-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (45 loc) · 954 Bytes
/
Copy pathpyproject.toml
File metadata and controls
54 lines (45 loc) · 954 Bytes
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
[project]
name = "link"
version = "2.0.0"
authors = [
{name = "Shish", email = "shish@shishnet.org"},
]
description = "Interest Link"
readme = "README.md"
requires-python = ">=3.14"
dependencies = [
"strawberry-graphql",
"strawberry-sqlalchemy-mapper",
"sqlalchemy",
"flask-sqlalchemy",
"flask[async]",
"bcrypt",
"gunicorn",
]
[dependency-groups]
dev = [
"ruff",
"ty",
"pytest",
"pytest-asyncio",
"pytest-subtests",
"pytest-coverage",
]
[tool.setuptools]
py-modules = ["backend"]
[tool.pytest.ini_options]
addopts = "--cov --cov-report term-missing --cov-fail-under 95"
[tool.coverage.run]
source = ["backend"]
[tool.ruff]
line-length = 88
target-version = "py314"
[tool.ruff.lint]
ignore = ["TRY002", "UP040", "UP045", "RUF012", "RUF059", "C400"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
[tool.isort]
profile = "black"
[tool.ty.rules]
not-subscriptable = "ignore"