mira-network 0.1.9__tar.gz → 0.1.10__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.
@@ -1,11 +1,10 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: mira-network
3
- Version: 0.1.9
3
+ Version: 0.1.10
4
4
  Summary: Python SDK for Mira Network API
5
5
  Author-Email: mira-network <sdk@mira.network>
6
6
  License: MIT
7
- Requires-Python: <=4.0,>=3.9
8
- Requires-Dist: httpx>=0.28.1
7
+ Requires-Python: >=3.9
9
8
  Requires-Dist: pydantic>=2.10.4
10
9
  Requires-Dist: typing-extensions>=4.8.0
11
10
  Requires-Dist: requests>=2.32.3
@@ -14,6 +13,7 @@ Requires-Dist: pytest>=8.3.4
14
13
  Requires-Dist: pytest-asyncio>=0.25.0
15
14
  Requires-Dist: ruff>=0.9.3
16
15
  Requires-Dist: black>=25.1.0
16
+ Requires-Dist: httpx>=0.28.1
17
17
  Description-Content-Type: text/markdown
18
18
 
19
19
  <div align="center">
@@ -3,7 +3,6 @@ authors = [
3
3
  { name = "mira-network", email = "sdk@mira.network" },
4
4
  ]
5
5
  dependencies = [
6
- "httpx>=0.28.1",
7
6
  "pydantic>=2.10.4",
8
7
  "typing-extensions>=4.8.0",
9
8
  "requests>=2.32.3",
@@ -12,12 +11,13 @@ dependencies = [
12
11
  "pytest-asyncio>=0.25.0",
13
12
  "ruff>=0.9.3",
14
13
  "black>=25.1.0",
14
+ "httpx>=0.28.1",
15
15
  ]
16
16
  description = "Python SDK for Mira Network API"
17
17
  name = "mira-network"
18
18
  readme = "README.md"
19
- requires-python = ">=3.9,<=4.0"
20
- version = "0.1.9"
19
+ requires-python = ">=3.9"
20
+ version = "0.1.10"
21
21
 
22
22
  [project.license]
23
23
  text = "MIT"
@@ -1,4 +1,5 @@
1
1
  from .client import MiraClient
2
+ from .sync_client import MiraSyncClient
2
3
  from .models import (
3
4
  Message,
4
5
  ModelProvider,
@@ -8,6 +9,7 @@ from .models import (
8
9
 
9
10
  __all__ = [
10
11
  "MiraClient",
12
+ "MiraSyncClient",
11
13
  "Message",
12
14
  "ModelProvider",
13
15
  "AiRequest",
File without changes
File without changes