-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
47 lines (38 loc) · 1.01 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
[tool.poetry]
name = "wsgi-echo-server"
version = "0.0.1"
description = ""
authors = ["Iuri de Silvio <[email protected]>"]
readme = "README.md"
packages = [{include = "wsgi_echo_server.py"}]
[tool.poetry.urls]
Homepage = "https://github.com/buserbrasil/wsgi-echo-server"
[tool.poetry.dependencies]
python = "^3.10"
requests = "^2.28.2"
flask = "^2.2.3"
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.1"
pytest-black = "^0.3.12"
pytest-cov = "^4.0.0"
pytest-mock = "^3.10.0"
pytest-ruff = "^0.0.3"
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]
build-backend = "poetry_dynamic_versioning.backend"
[tool.poetry-dynamic-versioning]
enable = true
[tool.pytest.ini_options]
addopts = "--capture=no --cov --cov-report term --cov-report xml --ruff --black"
filterwarnings = [
"ignore::PendingDeprecationWarning",
"ignore::DeprecationWarning"
]
[tool.coverage.run]
branch = true
[tool.coverage.report]
precision = 2
show_missing = true
skip_covered = true
[tool.ruff]
line-length = 88