forked from fedora-infra/flask-healthz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
65 lines (53 loc) · 1.24 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[tool.poetry]
name = "flask-healthz"
version = "1.0.1"
description = "A simple module to allow you to easily add health endpoints to your Flask application"
license = "BSD-3-Clause"
authors = [
"Fedora Infrastructure <[email protected]>"
]
readme = 'README.md'
repository = "https://github.com/fedora-infra/flask-healthz"
homepage = "https://github.com/fedora-infra/flask-healthz"
[tool.poetry.dependencies]
python = "^3.8.0"
flask = "^2.0.0 || ^3.0.0"
[tool.poetry.dev-dependencies]
flake8 = "*"
black = "*"
bandit = "*"
pytest = "*"
coverage = {extras = ["toml"], version = "*"}
pytest-cov = "*"
pre-commit = "*"
isort = "*"
safety = "*"
[tool.pytest.ini_options]
testpaths = [
"flask_healthz/tests",
]
[tool.coverage.run]
branch = true
source = ["flask_healthz"]
[tool.coverage.paths]
source = [
"flask_healthz",
".tox/*/site-packages/flask_healthz",
]
[tool.coverage.report]
fail_under = 100
exclude_lines = [
"pragma: no cover",
"if __name__ == .__main__.:",
]
omit = [
"flask_healthz/tests/*",
"flask_healthz/__init__.py",
]
[tool.isort]
profile = "black"
lines_after_imports = 2
force_alphabetical_sort_within_sections = true
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"