rebrandly-otel 0.1.5__tar.gz → 0.1.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.

Potentially problematic release.


This version of rebrandly-otel might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: rebrandly_otel
3
- Version: 0.1.5
3
+ Version: 0.1.6
4
4
  Summary: Python OTEL wrapper by Rebrandly
5
5
  Home-page: https://github.com/rebrandly/rebrandly-otel-python
6
6
  Author: Antonio Romano
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: rebrandly_otel
3
- Version: 0.1.5
3
+ Version: 0.1.6
4
4
  Summary: Python OTEL wrapper by Rebrandly
5
5
  Home-page: https://github.com/rebrandly/rebrandly-otel-python
6
6
  Author: Antonio Romano
@@ -5,7 +5,7 @@ with open("README.md", "r") as fh:
5
5
 
6
6
  setuptools.setup(
7
7
  name="rebrandly_otel",
8
- version="0.1.5",
8
+ version="0.1.6",
9
9
  author="Antonio Romano",
10
10
  author_email="antonio@rebrandly.com",
11
11
  description="Python OTEL wrapper by Rebrandly",
@@ -0,0 +1,17 @@
1
+ # src/__init__.py
2
+ from .rebrandly_otel import *
3
+
4
+ # Explicitly define what's available
5
+ __all__ = [
6
+ 'otel',
7
+ 'span',
8
+ 'aws_message_span',
9
+ 'traces',
10
+ 'tracer',
11
+ 'metrics',
12
+ 'logger',
13
+ 'force_flush',
14
+ 'aws_message_handler',
15
+ 'shutdown',
16
+ # add any other functions/classes you want to expose
17
+ ]
@@ -1,14 +0,0 @@
1
- # src/__init__.py
2
- from .rebrandly_otel import *
3
- from .logs import * # if you want to expose logs functions
4
- from .metrics import * # if you want to expose metrics functions
5
- from .traces import * # if you want to expose traces functions
6
-
7
- # Explicitly define what's available
8
- __all__ = [
9
- 'otel',
10
- 'lambda_handler',
11
- 'logger',
12
- 'force_flush',
13
- # add any other functions/classes you want to expose
14
- ]
File without changes
File without changes
File without changes