custom-python-logger 1.0.4__tar.gz → 1.0.6__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-1.0.4/custom_python_logger.egg-info → custom_python_logger-1.0.6}/PKG-INFO +1 -1
  2. custom_python_logger-1.0.6/custom_python_logger/__init__.py +3 -0
  3. {custom_python_logger-1.0.4 → custom_python_logger-1.0.6/custom_python_logger.egg-info}/PKG-INFO +1 -1
  4. {custom_python_logger-1.0.4 → custom_python_logger-1.0.6}/setup.py +1 -1
  5. custom_python_logger-1.0.4/custom_python_logger/__init__.py +0 -3
  6. {custom_python_logger-1.0.4 → custom_python_logger-1.0.6}/LICENSE +0 -0
  7. {custom_python_logger-1.0.4 → custom_python_logger-1.0.6}/MANIFEST.in +0 -0
  8. {custom_python_logger-1.0.4 → custom_python_logger-1.0.6}/README.md +0 -0
  9. {custom_python_logger-1.0.4 → custom_python_logger-1.0.6}/custom_python_logger/logger.py +0 -0
  10. {custom_python_logger-1.0.4 → custom_python_logger-1.0.6}/custom_python_logger/usage_example.py +0 -0
  11. {custom_python_logger-1.0.4 → custom_python_logger-1.0.6}/custom_python_logger.egg-info/SOURCES.txt +0 -0
  12. {custom_python_logger-1.0.4 → custom_python_logger-1.0.6}/custom_python_logger.egg-info/dependency_links.txt +0 -0
  13. {custom_python_logger-1.0.4 → custom_python_logger-1.0.6}/custom_python_logger.egg-info/requires.txt +0 -0
  14. {custom_python_logger-1.0.4 → custom_python_logger-1.0.6}/custom_python_logger.egg-info/top_level.txt +0 -0
  15. {custom_python_logger-1.0.4 → custom_python_logger-1.0.6}/pyproject.toml +0 -0
  16. {custom_python_logger-1.0.4 → custom_python_logger-1.0.6}/requirements.txt +0 -0
  17. {custom_python_logger-1.0.4 → custom_python_logger-1.0.6}/setup.cfg +0 -0
  18. {custom_python_logger-1.0.4 → custom_python_logger-1.0.6}/tests/test_logger.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: custom-python-logger
3
- Version: 1.0.4
3
+ Version: 1.0.6
4
4
  Summary: A custom logger with color support and additional features.
5
5
  Home-page: https://github.com/aviz92/custom-python-logger
6
6
  Author: Avi Zaguri
@@ -0,0 +1,3 @@
1
+ from custom_python_logger.logger import get_logger, json_pretty_format
2
+
3
+ __all__ = ["get_logger", "json_pretty_format"]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: custom-python-logger
3
- Version: 1.0.4
3
+ Version: 1.0.6
4
4
  Summary: A custom logger with color support and additional features.
5
5
  Home-page: https://github.com/aviz92/custom-python-logger
6
6
  Author: Avi Zaguri
@@ -1,6 +1,6 @@
1
1
  from setuptools import setup, find_packages
2
2
 
3
- package_version = '1.0.4'
3
+ package_version = '1.0.6'
4
4
 
5
5
  package_name = 'custom-python-logger'
6
6
  package_description = 'A custom logger with color support and additional features.'
@@ -1,3 +0,0 @@
1
- from custom_python_logger.logger import get_logger
2
-
3
- __all__ = ["get_logger", "json_pretty_format"]