This repository has been archived by the owner on Nov 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpyproject.toml
82 lines (74 loc) · 1.76 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[tool.black]
line-length=100
target-version=["py39"]
[tool.isort]
profile = "black"
atomic=true
line_length = 100
lines_after_imports=2
lines_between_types=1
known_third_party=[
"pytest",
"click",
]
known_first_party=["historical-system-profiles-backend"]
[tool.coverage.run]
branch = false
source = ["historical-system-profiles-backend"]
omit = ["historical-system-profiles-backend/tests/*",]
[tool.coverage.paths]
source = ["historical-system-profiles-backend/"]
[tool.coverage.report]
fail_under = 30
skip_covered = true
show_missing = true
[tool.pytest.ini_options]
minversion = "6.2.1"
addopts = "-s --tb=native --cov=."
testpaths = "./tests"
filterwarnings = [
"ignore::DeprecationWarning",
"ignore::PendingDeprecationWarning",
'ignore:function ham\(\) is deprecated:DeprecationWarning'
]
[tool.poetry]
name = "historical-system-profiles-backend"
version = "0.1.0"
description = ""
authors = ["Your Name <[email protected]>"]
readme = "README.md"
packages = []
[tool.poetry.dependencies]
python = "^3.9"
connexion = {extras = ["swagger-ui", "flask", "uvicorn"], version = "*"}
kerlescan = {git = "https://github.com/RedHatInsights/kerlescan.git", rev = "0.120", develop = true}
prometheus-client = "*"
gunicorn = "*"
flask-sqlalchemy = "*"
alembic = "*"
flask-script = "*"
flask-migrate = "*"
psycopg2 = "*"
kafka-python = "*"
logstash-formatter = "*"
python-dateutil = "*"
pytz = "*"
uvicorn = "*"
[tool.poetry.group.dev.dependencies]
black = "*"
flake8 = "*"
pytest = "*"
pytest-cov = "*"
pytest-flask = "*"
pytest-black = "*"
pytest-mock = "*"
coverage = {extras = ["toml"], version = "*"}
yamllint = "*"
mock = "*"
ipdb = "*"
toml = "*"
tomli = "*"
openapi-spec-validator = "*"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"