smartpylogger 0.1.0__tar.gz → 0.1.1__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.
- {smartpylogger-0.1.0/smartpylogger.egg-info → smartpylogger-0.1.1}/PKG-INFO +5 -6
- {smartpylogger-0.1.0 → smartpylogger-0.1.1}/pyproject.toml +10 -18
- {smartpylogger-0.1.0 → smartpylogger-0.1.1}/setup.py +1 -1
- {smartpylogger-0.1.0 → smartpylogger-0.1.1}/smartpylogger/logger.py +1 -1
- {smartpylogger-0.1.0 → smartpylogger-0.1.1/smartpylogger.egg-info}/PKG-INFO +5 -6
- {smartpylogger-0.1.0 → smartpylogger-0.1.1}/smartpylogger.egg-info/requires.txt +4 -4
- smartpylogger-0.1.1/smartpylogger.egg-info/top_level.txt +1 -0
- smartpylogger-0.1.0/smartpylogger.egg-info/top_level.txt +0 -1
- {smartpylogger-0.1.0 → smartpylogger-0.1.1}/LICENSE +0 -0
- {smartpylogger-0.1.0 → smartpylogger-0.1.1}/setup.cfg +0 -0
- {smartpylogger-0.1.0 → smartpylogger-0.1.1}/smartpylogger/README.md +0 -0
- {smartpylogger-0.1.0 → smartpylogger-0.1.1}/smartpylogger/__init__.py +0 -0
- {smartpylogger-0.1.0 → smartpylogger-0.1.1}/smartpylogger/utils.py +0 -0
- {smartpylogger-0.1.0 → smartpylogger-0.1.1}/smartpylogger.egg-info/SOURCES.txt +0 -0
- {smartpylogger-0.1.0 → smartpylogger-0.1.1}/smartpylogger.egg-info/dependency_links.txt +0 -0
- {smartpylogger-0.1.0 → smartpylogger-0.1.1}/smartpylogger.egg-info/entry_points.txt +0 -0
- {smartpylogger-0.1.0 → smartpylogger-0.1.1}/tests/test_catch.py +0 -0
- {smartpylogger-0.1.0 → smartpylogger-0.1.1}/tests/test_send.py +0 -0
@@ -1,20 +1,19 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: smartpylogger
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.1
|
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
|
7
|
-
Project-URL: Homepage, https://github.com/yourusername/smartpylogger
|
8
7
|
Classifier: Programming Language :: Python :: 3
|
9
8
|
Classifier: License :: OSI Approved :: MIT License
|
10
9
|
Classifier: Operating System :: OS Independent
|
11
10
|
Requires-Python: >=3.7
|
12
11
|
Description-Content-Type: text/markdown
|
13
12
|
License-File: LICENSE
|
14
|
-
Requires-Dist:
|
15
|
-
Requires-Dist:
|
16
|
-
Requires-Dist:
|
17
|
-
Requires-Dist:
|
13
|
+
Requires-Dist: fastapi>=0.68.0
|
14
|
+
Requires-Dist: uvicorn>=0.15.0
|
15
|
+
Requires-Dist: requests>=2.25.0
|
16
|
+
Requires-Dist: python-dotenv>=0.19.0
|
18
17
|
Provides-Extra: dev
|
19
18
|
Requires-Dist: pytest>=6.0; extra == "dev"
|
20
19
|
Requires-Dist: pytest-cov>=2.0; extra == "dev"
|
@@ -1,10 +1,10 @@
|
|
1
1
|
[build-system]
|
2
|
-
requires = ["setuptools>=
|
2
|
+
requires = ["setuptools>=45", "wheel"]
|
3
3
|
build-backend = "setuptools.build_meta"
|
4
4
|
|
5
5
|
[project]
|
6
6
|
name = "smartpylogger"
|
7
|
-
version = "0.1.
|
7
|
+
version = "0.1.1"
|
8
8
|
description = "Lightweight structured logger for Py projects with AI analysis!"
|
9
9
|
readme = "smartpylogger/README.md"
|
10
10
|
requires-python = ">=3.7"
|
@@ -19,18 +19,12 @@ classifiers = [
|
|
19
19
|
]
|
20
20
|
|
21
21
|
dependencies = [
|
22
|
-
"
|
23
|
-
"
|
24
|
-
"
|
25
|
-
"
|
22
|
+
"fastapi>=0.68.0",
|
23
|
+
"uvicorn>=0.15.0",
|
24
|
+
"requests>=2.25.0",
|
25
|
+
"python-dotenv>=0.19.0"
|
26
26
|
]
|
27
27
|
|
28
|
-
[tool.setuptools]
|
29
|
-
packages = ["smartpylogger"]
|
30
|
-
|
31
|
-
[project.urls]
|
32
|
-
Homepage = "https://github.com/yourusername/smartpylogger"
|
33
|
-
|
34
28
|
[project.optional-dependencies]
|
35
29
|
dev = [
|
36
30
|
"pytest>=6.0",
|
@@ -43,6 +37,10 @@ dev = [
|
|
43
37
|
[project.scripts]
|
44
38
|
couchbase-middleware = "couchbase_middleware.cli:main"
|
45
39
|
|
40
|
+
[tool.setuptools.packages.find]
|
41
|
+
where = ["."]
|
42
|
+
include = ["couchbase_middleware*"]
|
43
|
+
|
46
44
|
[tool.black]
|
47
45
|
line-length = 88
|
48
46
|
target-version = ['py38']
|
@@ -52,9 +50,3 @@ python_version = "3.8"
|
|
52
50
|
warn_return_any = true
|
53
51
|
warn_unused_configs = true
|
54
52
|
disallow_untyped_defs = true
|
55
|
-
|
56
|
-
[tool.pytest.ini_options]
|
57
|
-
testpaths = ["tests"]
|
58
|
-
python_files = ["test_*.py"]
|
59
|
-
python_classes = ["Test*"]
|
60
|
-
python_functions = ["test_*"]
|
@@ -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.
|
7
|
+
version="0.1.1",
|
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
|
@@ -25,7 +25,7 @@ from starlette.middleware.base import BaseHTTPMiddleware
|
|
25
25
|
from starlette.middleware.base import RequestResponseEndpoint
|
26
26
|
|
27
27
|
|
28
|
-
API_URL="http://
|
28
|
+
API_URL="http://51.12.61.210:8000" ### CHANGE TO EXTERNAL IP LATER
|
29
29
|
|
30
30
|
class ClientError(Exception):
|
31
31
|
pass
|
@@ -1,20 +1,19 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: smartpylogger
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.1
|
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
|
7
|
-
Project-URL: Homepage, https://github.com/yourusername/smartpylogger
|
8
7
|
Classifier: Programming Language :: Python :: 3
|
9
8
|
Classifier: License :: OSI Approved :: MIT License
|
10
9
|
Classifier: Operating System :: OS Independent
|
11
10
|
Requires-Python: >=3.7
|
12
11
|
Description-Content-Type: text/markdown
|
13
12
|
License-File: LICENSE
|
14
|
-
Requires-Dist:
|
15
|
-
Requires-Dist:
|
16
|
-
Requires-Dist:
|
17
|
-
Requires-Dist:
|
13
|
+
Requires-Dist: fastapi>=0.68.0
|
14
|
+
Requires-Dist: uvicorn>=0.15.0
|
15
|
+
Requires-Dist: requests>=2.25.0
|
16
|
+
Requires-Dist: python-dotenv>=0.19.0
|
18
17
|
Provides-Extra: dev
|
19
18
|
Requires-Dist: pytest>=6.0; extra == "dev"
|
20
19
|
Requires-Dist: pytest-cov>=2.0; extra == "dev"
|
@@ -0,0 +1 @@
|
|
1
|
+
|
@@ -1 +0,0 @@
|
|
1
|
-
smartpylogger
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|