-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
53 lines (46 loc) · 872 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
49
50
51
52
53
[project]
name = "link"
version = "2.0.0"
authors = [
{name = "Shish", email = "[email protected]"},
]
description = "Interest Link"
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"strawberry-graphql[debug-server]",
"strawberry-sqlalchemy-mapper",
"sqlalchemy",
"flask-sqlalchemy",
"flask[async]",
"bcrypt",
"gunicorn",
]
[project.optional-dependencies]
dev = [
"black",
"ruff",
"mypy",
"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.black]
line-length = 88
target-version = ['py311']
extend-exclude = '''
/(
| venv
)/
'''
[tool.isort]
profile = "black"
[tool.mypy]
files = "backend"