Skip to content

Commit 5f76d48

Browse files
committed
Release 1.0.16
1 parent 5a8db6c commit 5f76d48

File tree

2 files changed

+33
-28
lines changed

2 files changed

+33
-28
lines changed

pyproject.toml

Lines changed: 32 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
[project]
22
name = "python-utility-scripts"
3-
version = "3.11.11"
3+
version = "1.0.16"
44
description = "Python utility scripts"
5-
authors = [{ name = "dbasunag", email = "[email protected]" }]
65
requires-python = "~=3.9"
76
readme = "README.md"
87
license = "Apache-2.0"
98
classifiers = [
109
"Programming Language :: Python :: 3",
11-
"Operating System :: OS Independent",
10+
"Operating System :: OS Independent"
1211
]
1312
dependencies = [
1413
"pylero>=0.1.0,<0.2",
@@ -17,43 +16,43 @@ dependencies = [
1716
"jira>=3.6.0,<4",
1817
"tenacity>=9.0.0,<10",
1918
"python-simple-logger>=2.0.0,<3",
20-
"pyhelper-utils>=1.0.1,<2",
19+
"pyhelper-utils>=1.0.1,<2"
2120
]
2221

23-
[project.urls]
24-
Homepage = "https://github.com/RedHatQE/python-utility-scripts"
25-
Repository = "https://github.com/RedHatQE/python-utility-scripts"
26-
Documentation = "https://github.com/RedHatQE/python-utility-scripts/blob/main/README.md"
22+
[[project.authors]]
23+
name = "dbasunag"
24+
2725

28-
[project.scripts]
29-
pyutils-unusedcode = "apps.unused_code.unused_code:get_unused_functions"
30-
pyutils-polarion-verify-tc-requirements = "apps.polarion.polarion_verify_tc_requirements:has_verify"
31-
pyutils-polarion-set-automated = "apps.polarion.polarion_set_automated:polarion_approve_automate"
32-
pyutils-jira = "apps.jira_utils.jira_information:get_jira_mismatch"
26+
[project.urls]
27+
Homepage = "https://github.com/RedHatQE/python-utility-scripts"
28+
Repository = "https://github.com/RedHatQE/python-utility-scripts"
29+
Documentation = "https://github.com/RedHatQE/python-utility-scripts/blob/main/README.md"
3330

34-
[tool.coverage.run]
35-
omit = ["tests/*"]
31+
[project.scripts]
32+
pyutils-unusedcode = "apps.unused_code.unused_code:get_unused_functions"
33+
pyutils-polarion-verify-tc-requirements = "apps.polarion.polarion_verify_tc_requirements:has_verify"
34+
pyutils-polarion-set-automated = "apps.polarion.polarion_set_automated:polarion_approve_automate"
35+
pyutils-jira = "apps.jira_utils.jira_information:get_jira_mismatch"
3636

37-
[dependency-groups]
38-
dev = ["ipdb>=0.13.13,<0.14", "ipython"]
39-
test = ["pytest>=8.0.0,<9", "pytest-cov>=6.0.0,<7"]
37+
[tool.coverage.run]
38+
omit = [ "tests/*" ]
4039

4140
[tool.coverage.report]
4241
fail_under = 65
4342
skip_empty = true
4443

45-
[tool.uv]
46-
default-groups = ["dev", "test"]
47-
4844
[tool.coverage.html]
4945
directory = ".tests_coverage"
5046
show_contexts = true
5147

48+
[tool.uv]
49+
default-groups = [ "dev", "test" ]
50+
5251
[tool.hatch.build.targets.sdist]
53-
include = ["apps"]
52+
include = [ "apps" ]
5453

5554
[tool.hatch.build.targets.wheel]
56-
include = ["apps"]
55+
include = [ "apps" ]
5756

5857
[tool.mypy]
5958
show_error_codes = true
@@ -69,11 +68,17 @@ preview = true
6968
line-length = 120
7069
fix = true
7170
output-format = "grouped"
72-
lint.extend-select = ["I"]
7371

74-
[tool.ruff.format]
75-
exclude = [".git", ".venv", ".mypy_cache", ".tox", "__pycache__"]
72+
[tool.ruff.lint]
73+
extend-select = [ "I" ]
74+
75+
[tool.ruff.format]
76+
exclude = [ ".git", ".venv", ".mypy_cache", ".tox", "__pycache__" ]
77+
78+
[dependency-groups]
79+
dev = [ "ipdb>=0.13.13,<0.14", "ipython" ]
80+
test = [ "pytest>=8.0.0,<9", "pytest-cov>=6.0.0,<7" ]
7681

7782
[build-system]
78-
requires = ["hatchling"]
83+
requires = [ "hatchling" ]
7984
build-backend = "hatchling.build"

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)