-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
41 lines (36 loc) · 927 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
[tool.poetry]
name = "fastapi-vue"
version = "0.1.0"
description = ""
authors = ["Dongook Son <[email protected]>"]
[tool.poetry.dependencies]
python = ">=3.10,<3.11"
fastapi = "^0.81.0"
uvicorn = "^0.18.3"
[tool.poetry.dev-dependencies]
debugpy = "^1.6.2"
black = "^22.6.0"
jedi-language-server = "^0.37.0"
pre-commit = "^2.20.0"
pytest = "^7.1.2"
pytest-asyncio = "^0.18.3"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
# https://docs.pytest.org/en/6.2.x/customize.html#pyproject-toml
# Directories that are not visited by pytest collector:
norecursedirs = [".git", "__pycache__"]
doctest_optionflags = [
"NUMBER",
"NORMALIZE_WHITESPACE",
"IGNORE_EXCEPTION_DETAIL",
]
asyncio_mode = "auto"
# Extra options:
addopts = [
"--strict-markers",
"--tb=short",
"--doctest-modules",
"--doctest-continue-on-failure",
]