|
1 | 1 | [project]
|
2 | 2 | name = "pyhelper-utils"
|
3 |
| -version = "1.0.6" |
| 3 | +version = "1.0.7" |
4 | 4 | description = "Collective utility functions for python projects"
|
5 |
| -authors = [ |
6 |
| - { name = "Meni Yakove", email = "[email protected]" }, |
7 |
| - { name = "Ruth Netser", email = "[email protected]" }, |
8 |
| - { name = "Debarati Basu-Nag", email = "[email protected]" }, |
9 |
| -] |
10 | 5 | requires-python = "~=3.9"
|
11 | 6 | readme = "README.md"
|
12 | 7 | license = "Apache-2.0"
|
13 | 8 | classifiers = [
|
14 | 9 | "Programming Language :: Python :: 3",
|
15 |
| - "Operating System :: OS Independent", |
| 10 | + "Operating System :: OS Independent" |
16 | 11 | ]
|
17 | 12 | dependencies = [
|
18 | 13 | "python-simple-logger>=2.0.0,<3",
|
19 | 14 | "requests>=2.31.0,<3",
|
20 | 15 | "rich>=13.7.1,<14",
|
21 | 16 | "ipdb>=0.13.13,<0.14",
|
22 |
| - "python-rrmngmnt>=0.1.32,<0.2", |
| 17 | + "python-rrmngmnt>=0.1.32,<0.2" |
23 | 18 | ]
|
24 | 19 |
|
25 |
| -[project.urls] |
26 |
| -Homepage = "https://github.com/RedHatQE/pyhelper-utils" |
27 |
| -Repository = "https://github.com/RedHatQE/pyhelper-utils" |
28 |
| -Documentation = "https://github.com/RedHatQE/pyhelper-utils/blob/main/README.md" |
| 20 | + [[project.authors]] |
| 21 | + name = "Meni Yakove" |
| 22 | + |
29 | 23 |
|
30 |
| -[tool.coverage.run] |
31 |
| -omit = ["tests/*"] |
| 24 | + [[project.authors]] |
| 25 | + name = "Ruth Netser" |
| 26 | + |
32 | 27 |
|
33 |
| -[dependency-groups] |
34 |
| -tests = ["pytest>=8.1.1,<9", "pytest-cov>=6.0.0,<7", "pytest-mock>=3.14.0,<4"] |
35 |
| -dev = ["ipython"] |
| 28 | + [[project.authors]] |
| 29 | + name = "Debarati Basu-Nag" |
| 30 | + |
| 31 | + |
| 32 | + [project.urls] |
| 33 | + Homepage = "https://github.com/RedHatQE/pyhelper-utils" |
| 34 | + Repository = "https://github.com/RedHatQE/pyhelper-utils" |
| 35 | + Documentation = "https://github.com/RedHatQE/pyhelper-utils/blob/main/README.md" |
| 36 | + |
| 37 | +[tool.coverage.run] |
| 38 | +omit = [ "tests/*" ] |
36 | 39 |
|
37 | 40 | [tool.coverage.report]
|
38 | 41 | fail_under = 90
|
39 | 42 | skip_empty = true
|
40 | 43 |
|
41 |
| -[tool.uv] |
42 |
| -default-groups = ["tests", "dev"] |
43 |
| - |
44 | 44 | [tool.coverage.html]
|
45 | 45 | directory = ".tests_coverage"
|
46 | 46 |
|
| 47 | +[tool.uv] |
| 48 | +default-groups = [ "tests", "dev" ] |
| 49 | + |
47 | 50 | [tool.hatch.build.targets.sdist]
|
48 |
| -include = ["pyhelper_utils"] |
| 51 | +include = [ "pyhelper_utils" ] |
49 | 52 |
|
50 | 53 | [tool.hatch.build.targets.wheel]
|
51 |
| -include = ["pyhelper_utils"] |
| 54 | +include = [ "pyhelper_utils" ] |
52 | 55 |
|
53 | 56 | [tool.ruff]
|
54 | 57 | preview = true
|
55 | 58 | line-length = 120
|
56 | 59 | fix = true
|
57 | 60 | output-format = "grouped"
|
58 | 61 |
|
59 |
| -[tool.ruff.format] |
60 |
| -exclude = [".git", ".venv", ".mypy_cache", ".tox", "__pycache__"] |
| 62 | + [tool.ruff.format] |
| 63 | + exclude = [ ".git", ".venv", ".mypy_cache", ".tox", "__pycache__" ] |
| 64 | + |
| 65 | +[dependency-groups] |
| 66 | +tests = [ |
| 67 | + "pytest>=8.1.1,<9", |
| 68 | + "pytest-cov>=6.0.0,<7", |
| 69 | + "pytest-mock>=3.14.0,<4" |
| 70 | +] |
| 71 | +dev = [ "ipython" ] |
61 | 72 |
|
62 | 73 | [build-system]
|
63 |
| -requires = ["hatchling"] |
| 74 | +requires = [ "hatchling" ] |
64 | 75 | build-backend = "hatchling.build"
|
0 commit comments