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.
@@ -1,20 +1,19 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: smartpylogger
3
- Version: 0.1.0
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: colorama
15
- Requires-Dist: httpx
16
- Requires-Dist: fastapi
17
- Requires-Dist: starlette
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>=61.0"]
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.0"
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
- "colorama",
23
- "httpx",
24
- "fastapi",
25
- "starlette"
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.0",
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://localhost:8000" ### CHANGE TO EXTERNAL IP LATER
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.0
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: colorama
15
- Requires-Dist: httpx
16
- Requires-Dist: fastapi
17
- Requires-Dist: starlette
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,7 +1,7 @@
1
- colorama
2
- httpx
3
- fastapi
4
- starlette
1
+ fastapi>=0.68.0
2
+ uvicorn>=0.15.0
3
+ requests>=2.25.0
4
+ python-dotenv>=0.19.0
5
5
 
6
6
  [dev]
7
7
  pytest>=6.0
@@ -1 +0,0 @@
1
- smartpylogger
File without changes
File without changes