smartpylogger 0.1.1__tar.gz → 0.2.0__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: smartpylogger
3
- Version: 0.1.1
3
+ Version: 0.2.0
4
4
  Summary: Lightweight structured logger for Py projects with AI analysis!
5
5
  Author-email: Your Name <your@email.com>
6
6
  License: MIT
@@ -77,7 +77,7 @@ Special thanks goes out to the Couchbase team and AWS for sponsoring this projec
77
77
  ## Installation
78
78
 
79
79
  ```bash
80
- pip install -e .
80
+ pip install smartpylogger .
81
81
  ```
82
82
 
83
83
  ## Usage
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "smartpylogger"
7
- version = "0.1.1"
7
+ version = "0.2.0"
8
8
  description = "Lightweight structured logger for Py projects with AI analysis!"
9
9
  readme = "smartpylogger/README.md"
10
10
  requires-python = ">=3.7"
@@ -39,7 +39,7 @@ couchbase-middleware = "couchbase_middleware.cli:main"
39
39
 
40
40
  [tool.setuptools.packages.find]
41
41
  where = ["."]
42
- include = ["couchbase_middleware*"]
42
+ include = ["smartpylogger*"]
43
43
 
44
44
  [tool.black]
45
45
  line-length = 88
@@ -4,7 +4,7 @@ with open("smartpylogger/README.md", "r", encoding="utf-8") as f:
4
4
  long_description = f.read()
5
5
  setup(
6
6
  name="smartpylogger",
7
- version="0.1.1",
7
+ version="0.2.0",
8
8
  description="Lightweight structured logger for Py projects with AI analysis!",
9
9
  packages=find_packages(),
10
10
  # install_requires=[], # or just remove this line entirely
@@ -52,7 +52,7 @@ Special thanks goes out to the Couchbase team and AWS for sponsoring this projec
52
52
  ## Installation
53
53
 
54
54
  ```bash
55
- pip install -e .
55
+ pip install smartpylogger .
56
56
  ```
57
57
 
58
58
  ## Usage
@@ -1,7 +1,7 @@
1
1
  # backend/smartpylogger/__init__.py
2
2
 
3
3
  # Version (optional, but good practice)
4
- __version__ = "0.1.0"
4
+ __version__ = "0.2.0"
5
5
 
6
6
  # Import and expose your main classes/functions
7
7
  from .logger import LoggingMiddleware
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: smartpylogger
3
- Version: 0.1.1
3
+ Version: 0.2.0
4
4
  Summary: Lightweight structured logger for Py projects with AI analysis!
5
5
  Author-email: Your Name <your@email.com>
6
6
  License: MIT
@@ -77,7 +77,7 @@ Special thanks goes out to the Couchbase team and AWS for sponsoring this projec
77
77
  ## Installation
78
78
 
79
79
  ```bash
80
- pip install -e .
80
+ pip install smartpylogger .
81
81
  ```
82
82
 
83
83
  ## Usage
@@ -0,0 +1 @@
1
+ smartpylogger
File without changes
File without changes