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.
Files changed (18) hide show
  1. {custom_python_logger-3.0.1/custom_python_logger.egg-info → custom_python_logger-3.0.2}/PKG-INFO +1 -7
  2. {custom_python_logger-3.0.1 → custom_python_logger-3.0.2/custom_python_logger.egg-info}/PKG-INFO +1 -7
  3. custom_python_logger-3.0.2/custom_python_logger.egg-info/requires.txt +2 -0
  4. {custom_python_logger-3.0.1 → custom_python_logger-3.0.2}/pyproject.toml +6 -3
  5. custom_python_logger-3.0.1/custom_python_logger.egg-info/requires.txt +0 -8
  6. {custom_python_logger-3.0.1 → custom_python_logger-3.0.2}/LICENSE +0 -0
  7. {custom_python_logger-3.0.1 → custom_python_logger-3.0.2}/MANIFEST.in +0 -0
  8. {custom_python_logger-3.0.1 → custom_python_logger-3.0.2}/README.md +0 -0
  9. {custom_python_logger-3.0.1 → custom_python_logger-3.0.2}/custom_python_logger/__init__.py +0 -0
  10. {custom_python_logger-3.0.1 → custom_python_logger-3.0.2}/custom_python_logger/consts.py +0 -0
  11. {custom_python_logger-3.0.1 → custom_python_logger-3.0.2}/custom_python_logger/logger.py +0 -0
  12. {custom_python_logger-3.0.1 → custom_python_logger-3.0.2}/custom_python_logger.egg-info/SOURCES.txt +0 -0
  13. {custom_python_logger-3.0.1 → custom_python_logger-3.0.2}/custom_python_logger.egg-info/dependency_links.txt +0 -0
  14. {custom_python_logger-3.0.1 → custom_python_logger-3.0.2}/custom_python_logger.egg-info/top_level.txt +0 -0
  15. {custom_python_logger-3.0.1 → custom_python_logger-3.0.2}/setup.cfg +0 -0
  16. {custom_python_logger-3.0.1 → custom_python_logger-3.0.2}/tests/test_logger.py +0 -0
  17. {custom_python_logger-3.0.1 → custom_python_logger-3.0.2}/tests/test_logger_pytest.py +0 -0
  18. {custom_python_logger-3.0.1 → custom_python_logger-3.0.2}/tests/test_usage_example_pytest.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: custom-python-logger
3
- Version: 3.0.1
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
  ![PyPI version](https://img.shields.io/pypi/v/custom-python-logger)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: custom-python-logger
3
- Version: 3.0.1
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
  ![PyPI version](https://img.shields.io/pypi/v/custom-python-logger)
@@ -0,0 +1,2 @@
1
+ colorlog>=6.10.1
2
+ pyyaml>=6.0.3
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "custom-python-logger"
7
- version = "3.0.1"
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
- "pathlib>=1.0.1",
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
  ]
@@ -1,8 +0,0 @@
1
- colorlog>=6.10.1
2
- pathlib>=1.0.1
3
- pre-commit>=4.5.0
4
- pytest>=9.0.1
5
- python-dotenv>=1.2.1
6
- pyyaml>=6.0.3
7
- setuptools>=80.9.0
8
- wheel>=0.45.1