Skip to content

Commit 889cabd

Browse files
committed
fix: Use version from pyproject
1 parent 6f59f21 commit 889cabd

File tree

2 files changed

+26
-27
lines changed

2 files changed

+26
-27
lines changed

VERSION

Lines changed: 0 additions & 1 deletion
This file was deleted.

pyproject.toml

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[project]
22
name = "python-utility-scripts"
3-
version = "1.0.25"
3+
version = "2.0.1"
44
description = "Python utility scripts"
55
requires-python = ">=3.10"
66
readme = "README.md"
77
license = "Apache-2.0"
88
classifiers = [
99
"Programming Language :: Python :: 3",
10-
"Operating System :: OS Independent"
10+
"Operating System :: OS Independent",
1111
]
1212
dependencies = [
1313
"pylero>=0.1.0,<0.2",
@@ -18,26 +18,26 @@ dependencies = [
1818
"python-simple-logger>=2.0.2,<3",
1919
"pyhelper-utils>=1.0.1,<2",
2020
"ast-comments>=1.2.2",
21-
"click (>=8.1.7)"
21+
"click (>=8.1.7)",
2222
]
2323

24-
[[project.authors]]
25-
name = "dbasunag"
26-
24+
[[project.authors]]
25+
name = "dbasunag"
26+
2727

28-
[project.urls]
29-
Homepage = "https://github.com/RedHatQE/python-utility-scripts"
30-
Repository = "https://github.com/RedHatQE/python-utility-scripts"
31-
Documentation = "https://github.com/RedHatQE/python-utility-scripts/blob/main/README.md"
28+
[project.urls]
29+
Homepage = "https://github.com/RedHatQE/python-utility-scripts"
30+
Repository = "https://github.com/RedHatQE/python-utility-scripts"
31+
Documentation = "https://github.com/RedHatQE/python-utility-scripts/blob/main/README.md"
3232

33-
[project.scripts]
34-
pyutils-unusedcode = "apps.unused_code.unused_code:get_unused_functions"
35-
pyutils-polarion-verify-tc-requirements = "apps.polarion.polarion_verify_tc_requirements:has_verify"
36-
pyutils-polarion-set-automated = "apps.polarion.polarion_set_automated:polarion_approve_automate"
37-
pyutils-jira = "apps.jira_utils.jira_information:get_jira_mismatch"
33+
[project.scripts]
34+
pyutils-unusedcode = "apps.unused_code.unused_code:get_unused_functions"
35+
pyutils-polarion-verify-tc-requirements = "apps.polarion.polarion_verify_tc_requirements:has_verify"
36+
pyutils-polarion-set-automated = "apps.polarion.polarion_set_automated:polarion_approve_automate"
37+
pyutils-jira = "apps.jira_utils.jira_information:get_jira_mismatch"
3838

3939
[tool.coverage.run]
40-
omit = [ "tests/*" ]
40+
omit = ["tests/*"]
4141

4242
[tool.coverage.report]
4343
fail_under = 60
@@ -48,13 +48,13 @@ directory = ".tests_coverage"
4848
show_contexts = false
4949

5050
[tool.uv]
51-
default-groups = [ "dev", "test" ]
51+
default-groups = ["dev", "test"]
5252

5353
[tool.hatch.build.targets.sdist]
54-
include = [ "apps" ]
54+
include = ["apps"]
5555

5656
[tool.hatch.build.targets.wheel]
57-
include = [ "apps" ]
57+
include = ["apps"]
5858

5959
[tool.mypy]
6060
show_error_codes = true
@@ -71,21 +71,21 @@ line-length = 120
7171
fix = true
7272
output-format = "grouped"
7373

74-
[tool.ruff.lint]
75-
extend-select = [ "I" ]
74+
[tool.ruff.lint]
75+
extend-select = ["I"]
7676

77-
[tool.ruff.format]
78-
exclude = [ ".git", ".venv", ".mypy_cache", ".tox", "__pycache__" ]
77+
[tool.ruff.format]
78+
exclude = [".git", ".venv", ".mypy_cache", ".tox", "__pycache__"]
7979

8080
[dependency-groups]
81-
dev = [ "ipdb>=0.13.13,<0.14", "ipython" ]
81+
dev = ["ipdb>=0.13.13,<0.14", "ipython"]
8282
test = [
8383
"ipdb>=0.13.13",
8484
"ipython>=8.18.1",
8585
"pytest>=9.0.0,<10",
86-
"pytest-cov>=7.0.0,<8"
86+
"pytest-cov>=7.0.0,<8",
8787
]
8888

8989
[build-system]
90-
requires = [ "hatchling" ]
90+
requires = ["hatchling"]
9191
build-backend = "hatchling.build"

0 commit comments

Comments
 (0)