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.
Files changed (23) hide show
  1. {aiqa_client-0.4.1/aiqa_client.egg-info → aiqa_client-0.4.3}/PKG-INFO +6 -6
  2. {aiqa_client-0.4.1 → aiqa_client-0.4.3}/aiqa/client.py +1 -1
  3. {aiqa_client-0.4.1 → aiqa_client-0.4.3}/aiqa/constants.py +1 -1
  4. {aiqa_client-0.4.1 → aiqa_client-0.4.3/aiqa_client.egg-info}/PKG-INFO +6 -6
  5. {aiqa_client-0.4.1 → aiqa_client-0.4.3}/aiqa_client.egg-info/SOURCES.txt +1 -2
  6. {aiqa_client-0.4.1 → aiqa_client-0.4.3}/pyproject.toml +5 -5
  7. aiqa_client-0.4.1/setup.py +0 -9
  8. /aiqa_client-0.4.1/LICENSE → /aiqa_client-0.4.3/LICENSE.txt +0 -0
  9. {aiqa_client-0.4.1 → aiqa_client-0.4.3}/MANIFEST.in +0 -0
  10. {aiqa_client-0.4.1 → aiqa_client-0.4.3}/README.md +0 -0
  11. {aiqa_client-0.4.1 → aiqa_client-0.4.3}/aiqa/__init__.py +0 -0
  12. {aiqa_client-0.4.1 → aiqa_client-0.4.3}/aiqa/aiqa_exporter.py +0 -0
  13. {aiqa_client-0.4.1 → aiqa_client-0.4.3}/aiqa/experiment_runner.py +0 -0
  14. {aiqa_client-0.4.1 → aiqa_client-0.4.3}/aiqa/object_serialiser.py +0 -0
  15. {aiqa_client-0.4.1 → aiqa_client-0.4.3}/aiqa/py.typed +0 -0
  16. {aiqa_client-0.4.1 → aiqa_client-0.4.3}/aiqa/test_experiment_runner.py +0 -0
  17. {aiqa_client-0.4.1 → aiqa_client-0.4.3}/aiqa/test_startup_reliability.py +0 -0
  18. {aiqa_client-0.4.1 → aiqa_client-0.4.3}/aiqa/test_tracing.py +0 -0
  19. {aiqa_client-0.4.1 → aiqa_client-0.4.3}/aiqa/tracing.py +0 -0
  20. {aiqa_client-0.4.1 → aiqa_client-0.4.3}/aiqa_client.egg-info/dependency_links.txt +0 -0
  21. {aiqa_client-0.4.1 → aiqa_client-0.4.3}/aiqa_client.egg-info/requires.txt +0 -0
  22. {aiqa_client-0.4.1 → aiqa_client-0.4.3}/aiqa_client.egg-info/top_level.txt +0 -0
  23. {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.1
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/winterstein/aiqa
8
- Project-URL: Documentation, https://github.com/winterstein/aiqa/tree/main/client-python
9
- Project-URL: Repository, https://github.com/winterstein/aiqa
10
- Project-URL: Issues, https://github.com/winterstein/aiqa/issues
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 | None) -> None:
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 ""
@@ -3,4 +3,4 @@ Constants used across the AIQA client package.
3
3
  """
4
4
 
5
5
  AIQA_TRACER_NAME = "aiqa-tracer"
6
- VERSION = "0.4.1" # automatically updated by set-version-json.sh
6
+ VERSION = "0.4.3" # automatically updated by set-version-json.sh
@@ -1,13 +1,13 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: aiqa-client
3
- Version: 0.4.1
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/winterstein/aiqa
8
- Project-URL: Documentation, https://github.com/winterstein/aiqa/tree/main/client-python
9
- Project-URL: Repository, https://github.com/winterstein/aiqa
10
- Project-URL: Issues, https://github.com/winterstein/aiqa/issues
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
@@ -1,8 +1,7 @@
1
- LICENSE
1
+ LICENSE.txt
2
2
  MANIFEST.in
3
3
  README.md
4
4
  pyproject.toml
5
- setup.py
6
5
  aiqa/__init__.py
7
6
  aiqa/aiqa_exporter.py
8
7
  aiqa/client.py
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "aiqa-client"
7
- version = "0.4.1"
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/winterstein/aiqa"
48
- Documentation = "https://github.com/winterstein/aiqa/tree/main/client-python"
49
- Repository = "https://github.com/winterstein/aiqa"
50
- Issues = "https://github.com/winterstein/aiqa/issues"
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"]
@@ -1,9 +0,0 @@
1
- """
2
- Setup script for aiqa-client (kept for compatibility).
3
- Use pyproject.toml for modern builds.
4
- """
5
-
6
- from setuptools import setup
7
-
8
- setup()
9
-
File without changes
File without changes
File without changes
File without changes
File without changes