-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (31 loc) · 774 Bytes
/
pyproject.toml
File metadata and controls
34 lines (31 loc) · 774 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
[tool.poetry]
name = "python-store-fastapi-tdd"
version = "0.0.1"
description = "Uma API utilizando o conceito TDD"
authors = ["Wagner Andrade <wsawebmaster@yahoo.com.br>"]
readme = "README.md"
packages = [{include = "."}]
[tool.poetry.dependencies]
python = "^3.12"
fastapi = "^0.115.11"
uvicorn = "^0.34.0"
pydantic = "^2.10.6"
pydantic-settings = "^2.8.1"
motor = "^3.7.0"
pytest = "^8.3.5"
pytest-asyncio = "^0.25.3"
pre-commit = "^4.1.0"
httpx = "^0.27.0"
[tool.pytest.ini_options]
asyncio_default_fixture_loop_scope = "function"
asyncio_mode = "auto"
addopts = [
"--strict-config",
"--strict-markers",
"--ignore=docs_src",
]
xfail_strict = true
junit_family = "xunit2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"