logger-plugin 0.1.2__tar.gz → 0.1.3__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: logger-plugin
3
- Version: 0.1.2
4
- Summary: Add your description here
3
+ Version: 0.1.3
4
+ Summary: logger for python projects
5
5
  Requires-Python: >=3.11
6
6
  Description-Content-Type: text/markdown
@@ -1,7 +1,7 @@
1
1
  [project]
2
2
  name = "logger-plugin"
3
- version = "0.1.2"
4
- description = "Add your description here"
3
+ version = "0.1.3"
4
+ description = "logger for python projects"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.11"
7
7
  dependencies = []
@@ -0,0 +1,3 @@
1
+ from .logger import log_operation
2
+
3
+ __all__ = ["log_operation"]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: logger-plugin
3
- Version: 0.1.2
4
- Summary: Add your description here
3
+ Version: 0.1.3
4
+ Summary: logger for python projects
5
5
  Requires-Python: >=3.11
6
6
  Description-Content-Type: text/markdown
@@ -1,7 +1,7 @@
1
1
  README.md
2
2
  pyproject.toml
3
- src/__init__.py
4
- src/main.py
3
+ src/logger-plugin/__init__.py
4
+ src/logger-plugin/logger.py
5
5
  src/logger_plugin.egg-info/PKG-INFO
6
6
  src/logger_plugin.egg-info/SOURCES.txt
7
7
  src/logger_plugin.egg-info/dependency_links.txt
@@ -0,0 +1 @@
1
+ logger-plugin
@@ -1,3 +0,0 @@
1
- from .main import log_operation
2
-
3
- __all__ = ["log_operation"]
@@ -1,2 +0,0 @@
1
- __init__
2
- main
File without changes
File without changes