custom-python-logger 3.0.1__tar.gz → 3.0.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {custom_python_logger-3.0.1/custom_python_logger.egg-info → custom_python_logger-3.0.2}/PKG-INFO +1 -7
- {custom_python_logger-3.0.1 → custom_python_logger-3.0.2/custom_python_logger.egg-info}/PKG-INFO +1 -7
- custom_python_logger-3.0.2/custom_python_logger.egg-info/requires.txt +2 -0
- {custom_python_logger-3.0.1 → custom_python_logger-3.0.2}/pyproject.toml +6 -3
- custom_python_logger-3.0.1/custom_python_logger.egg-info/requires.txt +0 -8
- {custom_python_logger-3.0.1 → custom_python_logger-3.0.2}/LICENSE +0 -0
- {custom_python_logger-3.0.1 → custom_python_logger-3.0.2}/MANIFEST.in +0 -0
- {custom_python_logger-3.0.1 → custom_python_logger-3.0.2}/README.md +0 -0
- {custom_python_logger-3.0.1 → custom_python_logger-3.0.2}/custom_python_logger/__init__.py +0 -0
- {custom_python_logger-3.0.1 → custom_python_logger-3.0.2}/custom_python_logger/consts.py +0 -0
- {custom_python_logger-3.0.1 → custom_python_logger-3.0.2}/custom_python_logger/logger.py +0 -0
- {custom_python_logger-3.0.1 → custom_python_logger-3.0.2}/custom_python_logger.egg-info/SOURCES.txt +0 -0
- {custom_python_logger-3.0.1 → custom_python_logger-3.0.2}/custom_python_logger.egg-info/dependency_links.txt +0 -0
- {custom_python_logger-3.0.1 → custom_python_logger-3.0.2}/custom_python_logger.egg-info/top_level.txt +0 -0
- {custom_python_logger-3.0.1 → custom_python_logger-3.0.2}/setup.cfg +0 -0
- {custom_python_logger-3.0.1 → custom_python_logger-3.0.2}/tests/test_logger.py +0 -0
- {custom_python_logger-3.0.1 → custom_python_logger-3.0.2}/tests/test_logger_pytest.py +0 -0
- {custom_python_logger-3.0.1 → custom_python_logger-3.0.2}/tests/test_usage_example_pytest.py +0 -0
{custom_python_logger-3.0.1/custom_python_logger.egg-info → custom_python_logger-3.0.2}/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: custom-python-logger
|
|
3
|
-
Version: 3.0.
|
|
3
|
+
Version: 3.0.2
|
|
4
4
|
Summary: A custom logger with color support and additional features.
|
|
5
5
|
Author: Avi Zaguri
|
|
6
6
|
License: MIT
|
|
@@ -17,13 +17,7 @@ Requires-Python: >=3.12
|
|
|
17
17
|
Description-Content-Type: text/markdown
|
|
18
18
|
License-File: LICENSE
|
|
19
19
|
Requires-Dist: colorlog>=6.10.1
|
|
20
|
-
Requires-Dist: pathlib>=1.0.1
|
|
21
|
-
Requires-Dist: pre-commit>=4.5.0
|
|
22
|
-
Requires-Dist: pytest>=9.0.1
|
|
23
|
-
Requires-Dist: python-dotenv>=1.2.1
|
|
24
20
|
Requires-Dist: pyyaml>=6.0.3
|
|
25
|
-
Requires-Dist: setuptools>=80.9.0
|
|
26
|
-
Requires-Dist: wheel>=0.45.1
|
|
27
21
|
Dynamic: license-file
|
|
28
22
|
|
|
29
23
|

|
{custom_python_logger-3.0.1 → custom_python_logger-3.0.2/custom_python_logger.egg-info}/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: custom-python-logger
|
|
3
|
-
Version: 3.0.
|
|
3
|
+
Version: 3.0.2
|
|
4
4
|
Summary: A custom logger with color support and additional features.
|
|
5
5
|
Author: Avi Zaguri
|
|
6
6
|
License: MIT
|
|
@@ -17,13 +17,7 @@ Requires-Python: >=3.12
|
|
|
17
17
|
Description-Content-Type: text/markdown
|
|
18
18
|
License-File: LICENSE
|
|
19
19
|
Requires-Dist: colorlog>=6.10.1
|
|
20
|
-
Requires-Dist: pathlib>=1.0.1
|
|
21
|
-
Requires-Dist: pre-commit>=4.5.0
|
|
22
|
-
Requires-Dist: pytest>=9.0.1
|
|
23
|
-
Requires-Dist: python-dotenv>=1.2.1
|
|
24
20
|
Requires-Dist: pyyaml>=6.0.3
|
|
25
|
-
Requires-Dist: setuptools>=80.9.0
|
|
26
|
-
Requires-Dist: wheel>=0.45.1
|
|
27
21
|
Dynamic: license-file
|
|
28
22
|
|
|
29
23
|

|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "custom-python-logger"
|
|
7
|
-
version = "3.0.
|
|
7
|
+
version = "3.0.2"
|
|
8
8
|
description = "A custom logger with color support and additional features."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.12"
|
|
@@ -24,11 +24,14 @@ classifiers = [
|
|
|
24
24
|
|
|
25
25
|
dependencies = [
|
|
26
26
|
"colorlog>=6.10.1",
|
|
27
|
-
"
|
|
27
|
+
"pyyaml>=6.0.3",
|
|
28
|
+
]
|
|
29
|
+
|
|
30
|
+
[dependency-groups]
|
|
31
|
+
dev = [
|
|
28
32
|
"pre-commit>=4.5.0",
|
|
29
33
|
"pytest>=9.0.1",
|
|
30
34
|
"python-dotenv>=1.2.1",
|
|
31
|
-
"pyyaml>=6.0.3",
|
|
32
35
|
"setuptools>=80.9.0",
|
|
33
36
|
"wheel>=0.45.1",
|
|
34
37
|
]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{custom_python_logger-3.0.1 → custom_python_logger-3.0.2}/custom_python_logger.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{custom_python_logger-3.0.1 → custom_python_logger-3.0.2}/tests/test_usage_example_pytest.py
RENAMED
|
File without changes
|