Skip to content

Commit 81c2d6b

Browse files
committed
Release 2.0.12
1 parent 6e28b9a commit 81c2d6b

2 files changed

Lines changed: 27 additions & 33 deletions

File tree

pyproject.toml

Lines changed: 26 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,36 @@
11
[project]
22
name = "python-simple-logger"
3-
version = "2.0.11"
3+
version = "2.0.12"
44
description = "A simple logger for python"
55
requires-python = "~=3.9"
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
]
12-
dependencies = ["colorlog>=6.7.0,<7"]
12+
dependencies = [ "colorlog>=6.7.0,<7" ]
1313

14-
[[project.authors]]
15-
name = "Meni Yakove"
16-
email = "myakove@gmail.com"
14+
[[project.authors]]
15+
name = "Meni Yakove"
16+
email = "myakove@gmail.com"
1717

18-
[[project.authors]]
19-
name = "Ruth Netser"
20-
email = "rnetser@gmail.com"
18+
[[project.authors]]
19+
name = "Ruth Netser"
20+
email = "rnetser@gmail.com"
2121

22-
[project.urls]
23-
Homepage = "https://github.com/RedHatQE/python-simple-logger"
24-
Documentation = "https://github.com/RedHatQE/python-simple-logger/blob/main/README.md"
25-
Download = "https://pypi.org/project/python-simple-logger/"
26-
"Bug Tracker" = "https://github.com/RedHatQE/python-simple-logger/issues"
22+
[project.urls]
23+
Homepage = "https://github.com/RedHatQE/python-simple-logger"
24+
Documentation = "https://github.com/RedHatQE/python-simple-logger/blob/main/README.md"
25+
Download = "https://pypi.org/project/python-simple-logger/"
26+
"Bug Tracker" = "https://github.com/RedHatQE/python-simple-logger/issues"
2727

28-
[project.optional-dependencies]
29-
dev = [
30-
"ipdb>=0.13.13",
31-
"ipython>=8.18.1",
32-
]
33-
tests = [
34-
"pytest>=8.3.5",
35-
"pytest-cov>=6.1.1",
36-
]
28+
[project.optional-dependencies]
29+
dev = [ "ipdb>=0.13.13", "ipython>=8.18.1" ]
30+
tests = [ "pytest>=8.3.5", "pytest-cov>=6.1.1" ]
3731

3832
[tool.coverage.run]
39-
omit = ["**/tests/*"]
33+
omit = [ "**/tests/*" ]
4034

4135
[tool.coverage.report]
4236
fail_under = 93
@@ -47,22 +41,22 @@ directory = ".tests_coverage"
4741
show_contexts = true
4842

4943
[tool.uv]
50-
default-groups = ["dev", "tests"]
44+
default-groups = [ "dev", "tests" ]
5145

5246
[tool.hatch.build.targets.sdist]
53-
include = ["simple_logger"]
47+
include = [ "simple_logger" ]
5448

5549
[tool.hatch.build.targets.wheel]
56-
include = ["simple_logger"]
50+
include = [ "simple_logger" ]
5751

5852
[tool.ruff]
5953
preview = true
6054
line-length = 120
6155
fix = true
6256
output-format = "grouped"
6357

64-
[tool.ruff.format]
65-
exclude = [".git", ".venv", ".mypy_cache", ".tox", "__pycache__"]
58+
[tool.ruff.format]
59+
exclude = [ ".git", ".venv", ".mypy_cache", ".tox", "__pycache__" ]
6660

6761
[tool.mypy]
6862
show_error_codes = true
@@ -74,9 +68,9 @@ disallow_untyped_defs = true
7468
no_implicit_optional = true
7569

7670
[dependency-groups]
77-
dev = []
78-
tests = []
71+
dev = [ ]
72+
tests = [ ]
7973

8074
[build-system]
81-
requires = ["hatchling"]
75+
requires = [ "hatchling" ]
8276
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)