generated from RedHatQE/python-template-repository
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
67 lines (54 loc) · 1.54 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
[tool.coverage.run]
omit = ["tests/*"]
[tool.coverage.report]
fail_under = 90
skip_empty = true
[tool.coverage.html]
directory = ".tests_coverage"
[tool.ruff]
preview = true
line-length = 120
fix = true
output-format = "grouped"
[tool.ruff.format]
exclude = [".git", ".venv", ".mypy_cache", ".tox", "__pycache__"]
[tool.poetry]
name = "pyhelper-utils"
version = "0.0.0"
description = "Collective utility functions for python projects"
readme = "README.md"
repository = "https://github.com/RedHatQE/pyhelper-utils"
authors = [
"Meni Yakove <myakove@gmail.com>",
"Ruth Netser <rnetser@gmail.com>",
"Debarati Basu-Nag <dbasunag@redhat.com>",
]
license = "Apache-2.0"
packages = [{ include = "pyhelper_utils" }]
homepage = "https://github.com/RedHatQE/pyhelper-utils"
documentation = "https://github.com/RedHatQE/pyhelper-utils/blob/main/README.md"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
[tool.poetry.dependencies]
python = "^3.9"
python-simple-logger = "^2.0.0"
requests = "^2.31.0"
rich = "^13.7.1"
ipdb = "^0.13.13"
python-rrmngmnt = "^0.1.32"
[tool.poetry.group.tests.dependencies]
pytest = "^8.1.1"
pytest-cov = "^6.0.0"
pytest-mock = "^3.14.0"
[tool.poetry.group.dev.dependencies]
ipython = "*"
[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"