rebrandly-otel 0.1.3__tar.gz → 0.1.5__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.
- {rebrandly_otel-0.1.3 → rebrandly_otel-0.1.5}/PKG-INFO +8 -1
- {rebrandly_otel-0.1.3 → rebrandly_otel-0.1.5}/README.md +7 -0
- {rebrandly_otel-0.1.3 → rebrandly_otel-0.1.5}/rebrandly_otel.egg-info/PKG-INFO +8 -1
- rebrandly_otel-0.1.5/rebrandly_otel.egg-info/top_level.txt +1 -0
- {rebrandly_otel-0.1.3 → rebrandly_otel-0.1.5}/setup.py +3 -2
- rebrandly_otel-0.1.5/src/__init__.py +14 -0
- rebrandly_otel-0.1.3/rebrandly_otel.egg-info/top_level.txt +0 -1
- rebrandly_otel-0.1.3/src/__init__.py +0 -0
- {rebrandly_otel-0.1.3 → rebrandly_otel-0.1.5}/LICENSE +0 -0
- {rebrandly_otel-0.1.3 → rebrandly_otel-0.1.5}/rebrandly_otel.egg-info/SOURCES.txt +0 -0
- {rebrandly_otel-0.1.3 → rebrandly_otel-0.1.5}/rebrandly_otel.egg-info/dependency_links.txt +0 -0
- {rebrandly_otel-0.1.3 → rebrandly_otel-0.1.5}/setup.cfg +0 -0
- {rebrandly_otel-0.1.3 → rebrandly_otel-0.1.5}/src/logs.py +0 -0
- {rebrandly_otel-0.1.3 → rebrandly_otel-0.1.5}/src/metrics.py +0 -0
- {rebrandly_otel-0.1.3 → rebrandly_otel-0.1.5}/src/otel_utils.py +0 -0
- {rebrandly_otel-0.1.3 → rebrandly_otel-0.1.5}/src/rebrandly_otel.py +0 -0
- {rebrandly_otel-0.1.3 → rebrandly_otel-0.1.5}/src/traces.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: rebrandly_otel
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.5
|
|
4
4
|
Summary: Python OTEL wrapper by Rebrandly
|
|
5
5
|
Home-page: https://github.com/rebrandly/rebrandly-otel-python
|
|
6
6
|
Author: Antonio Romano
|
|
@@ -328,6 +328,13 @@ Rebrandly Python SDK is released under the MIT License.
|
|
|
328
328
|
|
|
329
329
|
## Build and Deploy
|
|
330
330
|
|
|
331
|
+
```bash
|
|
332
|
+
brew install pipx
|
|
333
|
+
pipx ensurepath
|
|
334
|
+
pipx install build
|
|
335
|
+
pipx install twine
|
|
336
|
+
```
|
|
337
|
+
|
|
331
338
|
> build
|
|
332
339
|
>
|
|
333
340
|
> twine upload dist/*
|
|
@@ -307,6 +307,13 @@ Rebrandly Python SDK is released under the MIT License.
|
|
|
307
307
|
|
|
308
308
|
## Build and Deploy
|
|
309
309
|
|
|
310
|
+
```bash
|
|
311
|
+
brew install pipx
|
|
312
|
+
pipx ensurepath
|
|
313
|
+
pipx install build
|
|
314
|
+
pipx install twine
|
|
315
|
+
```
|
|
316
|
+
|
|
310
317
|
> build
|
|
311
318
|
>
|
|
312
319
|
> twine upload dist/*
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: rebrandly_otel
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.5
|
|
4
4
|
Summary: Python OTEL wrapper by Rebrandly
|
|
5
5
|
Home-page: https://github.com/rebrandly/rebrandly-otel-python
|
|
6
6
|
Author: Antonio Romano
|
|
@@ -328,6 +328,13 @@ Rebrandly Python SDK is released under the MIT License.
|
|
|
328
328
|
|
|
329
329
|
## Build and Deploy
|
|
330
330
|
|
|
331
|
+
```bash
|
|
332
|
+
brew install pipx
|
|
333
|
+
pipx ensurepath
|
|
334
|
+
pipx install build
|
|
335
|
+
pipx install twine
|
|
336
|
+
```
|
|
337
|
+
|
|
331
338
|
> build
|
|
332
339
|
>
|
|
333
340
|
> twine upload dist/*
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
rebrandly_otel
|
|
@@ -5,14 +5,15 @@ with open("README.md", "r") as fh:
|
|
|
5
5
|
|
|
6
6
|
setuptools.setup(
|
|
7
7
|
name="rebrandly_otel",
|
|
8
|
-
version="0.1.
|
|
8
|
+
version="0.1.5",
|
|
9
9
|
author="Antonio Romano",
|
|
10
10
|
author_email="antonio@rebrandly.com",
|
|
11
11
|
description="Python OTEL wrapper by Rebrandly",
|
|
12
12
|
long_description=long_description,
|
|
13
13
|
long_description_content_type="text/markdown",
|
|
14
14
|
url="https://github.com/rebrandly/rebrandly-otel-python",
|
|
15
|
-
packages=
|
|
15
|
+
packages=["rebrandly_otel"],
|
|
16
|
+
package_dir={"rebrandly_otel": "src"},
|
|
16
17
|
classifiers=[
|
|
17
18
|
"Programming Language :: Python :: 3",
|
|
18
19
|
"License :: OSI Approved :: MIT License",
|
|
@@ -0,0 +1,14 @@
|
|
|
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
|
+
]
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
src
|
|
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
|