aiqa-client 0.4.1__tar.gz → 0.4.3__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.
- {aiqa_client-0.4.1/aiqa_client.egg-info → aiqa_client-0.4.3}/PKG-INFO +6 -6
- {aiqa_client-0.4.1 → aiqa_client-0.4.3}/aiqa/client.py +1 -1
- {aiqa_client-0.4.1 → aiqa_client-0.4.3}/aiqa/constants.py +1 -1
- {aiqa_client-0.4.1 → aiqa_client-0.4.3/aiqa_client.egg-info}/PKG-INFO +6 -6
- {aiqa_client-0.4.1 → aiqa_client-0.4.3}/aiqa_client.egg-info/SOURCES.txt +1 -2
- {aiqa_client-0.4.1 → aiqa_client-0.4.3}/pyproject.toml +5 -5
- aiqa_client-0.4.1/setup.py +0 -9
- /aiqa_client-0.4.1/LICENSE → /aiqa_client-0.4.3/LICENSE.txt +0 -0
- {aiqa_client-0.4.1 → aiqa_client-0.4.3}/MANIFEST.in +0 -0
- {aiqa_client-0.4.1 → aiqa_client-0.4.3}/README.md +0 -0
- {aiqa_client-0.4.1 → aiqa_client-0.4.3}/aiqa/__init__.py +0 -0
- {aiqa_client-0.4.1 → aiqa_client-0.4.3}/aiqa/aiqa_exporter.py +0 -0
- {aiqa_client-0.4.1 → aiqa_client-0.4.3}/aiqa/experiment_runner.py +0 -0
- {aiqa_client-0.4.1 → aiqa_client-0.4.3}/aiqa/object_serialiser.py +0 -0
- {aiqa_client-0.4.1 → aiqa_client-0.4.3}/aiqa/py.typed +0 -0
- {aiqa_client-0.4.1 → aiqa_client-0.4.3}/aiqa/test_experiment_runner.py +0 -0
- {aiqa_client-0.4.1 → aiqa_client-0.4.3}/aiqa/test_startup_reliability.py +0 -0
- {aiqa_client-0.4.1 → aiqa_client-0.4.3}/aiqa/test_tracing.py +0 -0
- {aiqa_client-0.4.1 → aiqa_client-0.4.3}/aiqa/tracing.py +0 -0
- {aiqa_client-0.4.1 → aiqa_client-0.4.3}/aiqa_client.egg-info/dependency_links.txt +0 -0
- {aiqa_client-0.4.1 → aiqa_client-0.4.3}/aiqa_client.egg-info/requires.txt +0 -0
- {aiqa_client-0.4.1 → aiqa_client-0.4.3}/aiqa_client.egg-info/top_level.txt +0 -0
- {aiqa_client-0.4.1 → aiqa_client-0.4.3}/setup.cfg +0 -0
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: aiqa-client
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.3
|
|
4
4
|
Summary: OpenTelemetry-based Python client for tracing functions and sending traces to the AIQA server
|
|
5
5
|
Author-email: AIQA <info@aiqa.dev>
|
|
6
6
|
License: MIT
|
|
7
|
-
Project-URL: Homepage, https://github.com/
|
|
8
|
-
Project-URL: Documentation, https://github.com/
|
|
9
|
-
Project-URL: Repository, https://github.com/
|
|
10
|
-
Project-URL: Issues, https://github.com/
|
|
7
|
+
Project-URL: Homepage, https://github.com/winterwell/aiqa-client-python
|
|
8
|
+
Project-URL: Documentation, https://github.com/winterwell/aiqa-client-python
|
|
9
|
+
Project-URL: Repository, https://github.com/winterwell/aiqa-client-python
|
|
10
|
+
Project-URL: Issues, https://github.com/winterwell/aiqa-client-python/issues
|
|
11
11
|
Keywords: opentelemetry,tracing,observability,aiqa,monitoring
|
|
12
12
|
Classifier: Development Status :: 4 - Beta
|
|
13
13
|
Classifier: Intended Audience :: Developers
|
|
@@ -22,7 +22,7 @@ Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
|
22
22
|
Classifier: Topic :: System :: Monitoring
|
|
23
23
|
Requires-Python: >=3.8
|
|
24
24
|
Description-Content-Type: text/markdown
|
|
25
|
-
License-File: LICENSE
|
|
25
|
+
License-File: LICENSE.txt
|
|
26
26
|
Requires-Dist: opentelemetry-api>=1.24.0
|
|
27
27
|
Requires-Dist: opentelemetry-sdk>=1.24.0
|
|
28
28
|
Requires-Dist: opentelemetry-semantic-conventions>=0.40b0
|
|
@@ -118,7 +118,7 @@ def get_component_tag() -> str:
|
|
|
118
118
|
return _component_tag
|
|
119
119
|
|
|
120
120
|
|
|
121
|
-
def set_component_tag(tag: str
|
|
121
|
+
def set_component_tag(tag: Optional[str]) -> None:
|
|
122
122
|
"""Set the component tag programmatically (overrides environment variable)."""
|
|
123
123
|
global _component_tag
|
|
124
124
|
_component_tag = tag or ""
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: aiqa-client
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.3
|
|
4
4
|
Summary: OpenTelemetry-based Python client for tracing functions and sending traces to the AIQA server
|
|
5
5
|
Author-email: AIQA <info@aiqa.dev>
|
|
6
6
|
License: MIT
|
|
7
|
-
Project-URL: Homepage, https://github.com/
|
|
8
|
-
Project-URL: Documentation, https://github.com/
|
|
9
|
-
Project-URL: Repository, https://github.com/
|
|
10
|
-
Project-URL: Issues, https://github.com/
|
|
7
|
+
Project-URL: Homepage, https://github.com/winterwell/aiqa-client-python
|
|
8
|
+
Project-URL: Documentation, https://github.com/winterwell/aiqa-client-python
|
|
9
|
+
Project-URL: Repository, https://github.com/winterwell/aiqa-client-python
|
|
10
|
+
Project-URL: Issues, https://github.com/winterwell/aiqa-client-python/issues
|
|
11
11
|
Keywords: opentelemetry,tracing,observability,aiqa,monitoring
|
|
12
12
|
Classifier: Development Status :: 4 - Beta
|
|
13
13
|
Classifier: Intended Audience :: Developers
|
|
@@ -22,7 +22,7 @@ Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
|
22
22
|
Classifier: Topic :: System :: Monitoring
|
|
23
23
|
Requires-Python: >=3.8
|
|
24
24
|
Description-Content-Type: text/markdown
|
|
25
|
-
License-File: LICENSE
|
|
25
|
+
License-File: LICENSE.txt
|
|
26
26
|
Requires-Dist: opentelemetry-api>=1.24.0
|
|
27
27
|
Requires-Dist: opentelemetry-sdk>=1.24.0
|
|
28
28
|
Requires-Dist: opentelemetry-semantic-conventions>=0.40b0
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "aiqa-client"
|
|
7
|
-
version = "0.4.
|
|
7
|
+
version = "0.4.3"
|
|
8
8
|
description = "OpenTelemetry-based Python client for tracing functions and sending traces to the AIQA server"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.8"
|
|
@@ -44,10 +44,10 @@ dev = [
|
|
|
44
44
|
]
|
|
45
45
|
|
|
46
46
|
[project.urls]
|
|
47
|
-
Homepage = "https://github.com/
|
|
48
|
-
Documentation = "https://github.com/
|
|
49
|
-
Repository = "https://github.com/
|
|
50
|
-
Issues = "https://github.com/
|
|
47
|
+
Homepage = "https://github.com/winterwell/aiqa-client-python"
|
|
48
|
+
Documentation = "https://github.com/winterwell/aiqa-client-python"
|
|
49
|
+
Repository = "https://github.com/winterwell/aiqa-client-python"
|
|
50
|
+
Issues = "https://github.com/winterwell/aiqa-client-python/issues"
|
|
51
51
|
|
|
52
52
|
[tool.setuptools]
|
|
53
53
|
packages = ["aiqa"]
|
aiqa_client-0.4.1/setup.py
DELETED
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|