-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
74 lines (63 loc) · 1.79 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
[tool.mypy]
check_untyped_defs = "true"
disallow_any_generics = "true"
disallow_incomplete_defs = "true"
disallow_untyped_defs = "true"
no_implicit_optional = "true"
ignore_missing_imports = "true"
[tool.poetry]
name = "firewatch"
version = "2.0.0"
description = "A tool to monitor results in OpenShift CI and report pod or test failures to Jira."
authors = ["CSPI QE <[email protected]>"]
readme = "README.md"
license = "Apche-2.0"
homepage = "https://github.com/CSPI-QE/firewatch"
repository = "https://github.com/CSPI-QE/firewatch"
packages = [{include = "src"}]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
[tool.poetry.urls]
Download = "https://github.com/CSPI-QE/firewatch"
"Bug Tracker" = "https://github.com/CSPI-QE/firewatch/issues"
[tool.poetry.scripts]
firewatch = "src.cli:main"
[tool.poetry.dependencies]
python = "^3.8"
click = "^8.1.7"
google-cloud-storage = "^2.10.0"
jinja2 = "^3.1.4"
jira = "^3.5.2"
junitparser = "^3.1.0"
python-simple-logger = "^1.0.6"
ipdb = "*"
pyhelper-utils = "^0.0.17"
[tool.poetry.group.dev.dependencies]
tox = "^4.11.4"
pre-commit = "*"
pytest = "^8.0.0"
pytest-cov = "^4.1.0"
pytest-mock = "^3.12.0"
ipython = "*"
[tool.poetry.group.tests.dependencies]
google-cloud-storage = "^2.10.0"
pytest = "^8.0.0"
pytest-cov = "^4.1.0"
pytest-mock = "^3.11.1"
[tool.poetry-dynamic-versioning]
enable = true
pattern = "((?P<epoch>\\d+)!)?(?P<base>\\d+(\\.\\d+)*)"
[tool.poetry-dynamic-versioning.substitution]
files = ["VERSION"]
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]
build-backend = "poetry_dynamic_versioning.backend"
[tool.ruff]
preview = true
line-length = 120
fix = true
output-format = "grouped"
[tool.ruff.format]
exclude = [".git", ".venv", ".mypy_cache", ".tox", "__pycache__"]