rebrandly-otel 0.1.1__tar.gz → 0.1.2__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.1 → rebrandly_otel-0.1.2}/PKG-INFO +14 -2
- {rebrandly_otel-0.1.1 → rebrandly_otel-0.1.2}/README.md +13 -1
- {rebrandly_otel-0.1.1 → rebrandly_otel-0.1.2}/rebrandly_otel.egg-info/PKG-INFO +14 -2
- {rebrandly_otel-0.1.1 → rebrandly_otel-0.1.2}/setup.py +2 -2
- {rebrandly_otel-0.1.1 → rebrandly_otel-0.1.2}/LICENSE +0 -0
- {rebrandly_otel-0.1.1 → rebrandly_otel-0.1.2}/rebrandly_otel.egg-info/SOURCES.txt +0 -0
- {rebrandly_otel-0.1.1 → rebrandly_otel-0.1.2}/rebrandly_otel.egg-info/dependency_links.txt +0 -0
- {rebrandly_otel-0.1.1 → rebrandly_otel-0.1.2}/rebrandly_otel.egg-info/top_level.txt +0 -0
- {rebrandly_otel-0.1.1 → rebrandly_otel-0.1.2}/setup.cfg +0 -0
- {rebrandly_otel-0.1.1 → rebrandly_otel-0.1.2}/src/__init__.py +0 -0
- {rebrandly_otel-0.1.1 → rebrandly_otel-0.1.2}/src/logs.py +0 -0
- {rebrandly_otel-0.1.1 → rebrandly_otel-0.1.2}/src/metrics.py +0 -0
- {rebrandly_otel-0.1.1 → rebrandly_otel-0.1.2}/src/otel_utils.py +0 -0
- {rebrandly_otel-0.1.1 → rebrandly_otel-0.1.2}/src/rebrandly_otel.py +0 -0
- {rebrandly_otel-0.1.1 → rebrandly_otel-0.1.2}/src/traces.py +0 -0
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: rebrandly_otel
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2
|
|
4
4
|
Summary: Python OTEL wrapper by Rebrandly
|
|
5
|
-
Home-page: https://github.com/
|
|
5
|
+
Home-page: https://github.com/rebrandly/rebrandly-otel-python
|
|
6
6
|
Author: Antonio Romano
|
|
7
7
|
Author-email: antobio@rebrandly.com
|
|
8
8
|
Classifier: Programming Language :: Python :: 3
|
|
@@ -325,3 +325,15 @@ You can find More examples [here](examples)
|
|
|
325
325
|
## License
|
|
326
326
|
|
|
327
327
|
Rebrandly Python SDK is released under the MIT License.
|
|
328
|
+
|
|
329
|
+
## Build and Deploy
|
|
330
|
+
|
|
331
|
+
> build --version
|
|
332
|
+
>
|
|
333
|
+
> twine --version
|
|
334
|
+
|
|
335
|
+
If `build` gives you an error, try:
|
|
336
|
+
|
|
337
|
+
> pyproject-build --version
|
|
338
|
+
>
|
|
339
|
+
> twine --version
|
|
@@ -303,4 +303,16 @@ You can find More examples [here](examples)
|
|
|
303
303
|
|
|
304
304
|
## License
|
|
305
305
|
|
|
306
|
-
Rebrandly Python SDK is released under the MIT License.
|
|
306
|
+
Rebrandly Python SDK is released under the MIT License.
|
|
307
|
+
|
|
308
|
+
## Build and Deploy
|
|
309
|
+
|
|
310
|
+
> build --version
|
|
311
|
+
>
|
|
312
|
+
> twine --version
|
|
313
|
+
|
|
314
|
+
If `build` gives you an error, try:
|
|
315
|
+
|
|
316
|
+
> pyproject-build --version
|
|
317
|
+
>
|
|
318
|
+
> twine --version
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: rebrandly_otel
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2
|
|
4
4
|
Summary: Python OTEL wrapper by Rebrandly
|
|
5
|
-
Home-page: https://github.com/
|
|
5
|
+
Home-page: https://github.com/rebrandly/rebrandly-otel-python
|
|
6
6
|
Author: Antonio Romano
|
|
7
7
|
Author-email: antobio@rebrandly.com
|
|
8
8
|
Classifier: Programming Language :: Python :: 3
|
|
@@ -325,3 +325,15 @@ You can find More examples [here](examples)
|
|
|
325
325
|
## License
|
|
326
326
|
|
|
327
327
|
Rebrandly Python SDK is released under the MIT License.
|
|
328
|
+
|
|
329
|
+
## Build and Deploy
|
|
330
|
+
|
|
331
|
+
> build --version
|
|
332
|
+
>
|
|
333
|
+
> twine --version
|
|
334
|
+
|
|
335
|
+
If `build` gives you an error, try:
|
|
336
|
+
|
|
337
|
+
> pyproject-build --version
|
|
338
|
+
>
|
|
339
|
+
> twine --version
|
|
@@ -5,13 +5,13 @@ 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.2",
|
|
9
9
|
author="Antonio Romano",
|
|
10
10
|
author_email="antobio@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
|
-
url="https://github.com/
|
|
14
|
+
url="https://github.com/rebrandly/rebrandly-otel-python",
|
|
15
15
|
packages=setuptools.find_packages(),
|
|
16
16
|
classifiers=[
|
|
17
17
|
"Programming Language :: Python :: 3",
|
|
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
|
|
File without changes
|