aethexai-sdk 0.0.1__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.
@@ -0,0 +1,27 @@
1
+ Metadata-Version: 2.4
2
+ Name: aethexai-sdk
3
+ Version: 0.0.1
4
+ Summary: Reserved name. Install `aethexai` instead — the official Python SDK for the Aethex voice AI platform.
5
+ Project-URL: Homepage, https://aethexai.com
6
+ Project-URL: Documentation, https://docs.aethexai.com
7
+ Project-URL: Repository, https://github.com/aethexai-core/aethexai-python
8
+ License-Expression: MIT
9
+ Requires-Python: >=3.8
10
+ Requires-Dist: aethexai
11
+ Description-Content-Type: text/markdown
12
+
13
+ # aethexai-sdk
14
+
15
+ This package name is reserved by Aethex AI to prevent typosquatting.
16
+
17
+ **Install the official SDK instead:**
18
+
19
+ ```bash
20
+ pip install aethexai
21
+ ```
22
+
23
+ ```python
24
+ from aethexai import AethexAI
25
+ ```
26
+
27
+ Documentation: https://docs.aethexai.com
@@ -0,0 +1,15 @@
1
+ # aethexai-sdk
2
+
3
+ This package name is reserved by Aethex AI to prevent typosquatting.
4
+
5
+ **Install the official SDK instead:**
6
+
7
+ ```bash
8
+ pip install aethexai
9
+ ```
10
+
11
+ ```python
12
+ from aethexai import AethexAI
13
+ ```
14
+
15
+ Documentation: https://docs.aethexai.com
@@ -0,0 +1,20 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "aethexai-sdk"
7
+ version = "0.0.1"
8
+ description = "Reserved name. Install `aethexai` instead — the official Python SDK for the Aethex voice AI platform."
9
+ readme = "README.md"
10
+ license = "MIT"
11
+ requires-python = ">=3.8"
12
+ dependencies = ["aethexai"]
13
+
14
+ [project.urls]
15
+ Homepage = "https://aethexai.com"
16
+ Documentation = "https://docs.aethexai.com"
17
+ Repository = "https://github.com/aethexai-core/aethexai-python"
18
+
19
+ [tool.hatch.build.targets.wheel]
20
+ packages = ["src/aethexai_sdk"]
@@ -0,0 +1,15 @@
1
+ """Reserved name. Use `aethexai` instead."""
2
+ import warnings
3
+
4
+ warnings.warn(
5
+ "The 'aethexai-sdk' package is a reserved name. "
6
+ "Please `pip install aethexai` and `import aethexai` for the official SDK.",
7
+ UserWarning,
8
+ stacklevel=2,
9
+ )
10
+
11
+ from aethexai import * # noqa: F401, F403, E402
12
+ from aethexai import __version__ as _aethexai_version # noqa: E402
13
+
14
+ __version__ = "0.0.1"
15
+ __aethexai_version__ = _aethexai_version