hypercli-cli 0.8.6__tar.gz → 0.8.7__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 (22) hide show
  1. {hypercli_cli-0.8.6 → hypercli_cli-0.8.7}/PKG-INFO +4 -4
  2. hypercli_cli-0.8.7/hypercli_cli/__init__.py +1 -0
  3. {hypercli_cli-0.8.6 → hypercli_cli-0.8.7}/pyproject.toml +4 -4
  4. hypercli_cli-0.8.6/hypercli_cli/__init__.py +0 -1
  5. {hypercli_cli-0.8.6 → hypercli_cli-0.8.7}/.gitignore +0 -0
  6. {hypercli_cli-0.8.6 → hypercli_cli-0.8.7}/README.md +0 -0
  7. {hypercli_cli-0.8.6 → hypercli_cli-0.8.7}/hypercli_cli/billing.py +0 -0
  8. {hypercli_cli-0.8.6 → hypercli_cli-0.8.7}/hypercli_cli/claw.py +0 -0
  9. {hypercli_cli-0.8.6 → hypercli_cli-0.8.7}/hypercli_cli/cli.py +0 -0
  10. {hypercli_cli-0.8.6 → hypercli_cli-0.8.7}/hypercli_cli/comfyui.py +0 -0
  11. {hypercli_cli-0.8.6 → hypercli_cli-0.8.7}/hypercli_cli/flow.py +0 -0
  12. {hypercli_cli-0.8.6 → hypercli_cli-0.8.7}/hypercli_cli/instances.py +0 -0
  13. {hypercli_cli-0.8.6 → hypercli_cli-0.8.7}/hypercli_cli/jobs.py +0 -0
  14. {hypercli_cli-0.8.6 → hypercli_cli-0.8.7}/hypercli_cli/keys.py +0 -0
  15. {hypercli_cli-0.8.6 → hypercli_cli-0.8.7}/hypercli_cli/llm.py +0 -0
  16. {hypercli_cli-0.8.6 → hypercli_cli-0.8.7}/hypercli_cli/onboard.py +0 -0
  17. {hypercli_cli-0.8.6 → hypercli_cli-0.8.7}/hypercli_cli/output.py +0 -0
  18. {hypercli_cli-0.8.6 → hypercli_cli-0.8.7}/hypercli_cli/renders.py +0 -0
  19. {hypercli_cli-0.8.6 → hypercli_cli-0.8.7}/hypercli_cli/tui/__init__.py +0 -0
  20. {hypercli_cli-0.8.6 → hypercli_cli-0.8.7}/hypercli_cli/tui/job_monitor.py +0 -0
  21. {hypercli_cli-0.8.6 → hypercli_cli-0.8.7}/hypercli_cli/user.py +0 -0
  22. {hypercli_cli-0.8.6 → hypercli_cli-0.8.7}/hypercli_cli/wallet.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: hypercli-cli
3
- Version: 0.8.6
3
+ Version: 0.8.7
4
4
  Summary: CLI for HyperCLI - GPU orchestration and LLM API
5
5
  Project-URL: Homepage, https://hypercli.com
6
6
  Project-URL: Documentation, https://docs.hypercli.com
@@ -9,7 +9,7 @@ Author-email: HyperCLI <support@hypercli.com>
9
9
  License: MIT
10
10
  Requires-Python: >=3.10
11
11
  Requires-Dist: httpx>=0.27.0
12
- Requires-Dist: hypercli-sdk>=0.8.3
12
+ Requires-Dist: hypercli-sdk>=0.8.7
13
13
  Requires-Dist: mutagen>=1.47.0
14
14
  Requires-Dist: openai>=2.8.1
15
15
  Requires-Dist: pyyaml>=6.0
@@ -19,11 +19,11 @@ Requires-Dist: websocket-client>=1.6.0
19
19
  Provides-Extra: all
20
20
  Requires-Dist: argon2-cffi>=25.0.0; extra == 'all'
21
21
  Requires-Dist: eth-account>=0.13.0; extra == 'all'
22
- Requires-Dist: hypercli-sdk[comfyui]>=0.8.3; extra == 'all'
22
+ Requires-Dist: hypercli-sdk[comfyui]>=0.8.7; extra == 'all'
23
23
  Requires-Dist: web3>=7.0.0; extra == 'all'
24
24
  Requires-Dist: x402[evm,httpx]>=2.0.0; extra == 'all'
25
25
  Provides-Extra: comfyui
26
- Requires-Dist: hypercli-sdk[comfyui]>=0.8.3; extra == 'comfyui'
26
+ Requires-Dist: hypercli-sdk[comfyui]>=0.8.7; extra == 'comfyui'
27
27
  Provides-Extra: dev
28
28
  Requires-Dist: pytest>=8.0.0; extra == 'dev'
29
29
  Requires-Dist: ruff>=0.3.0; extra == 'dev'
@@ -0,0 +1 @@
1
+ __version__ = "0.8.7"
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "hypercli-cli"
7
- version = "0.8.6"
7
+ version = "0.8.7"
8
8
  description = "CLI for HyperCLI - GPU orchestration and LLM API"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10"
@@ -13,7 +13,7 @@ authors = [
13
13
  { name = "HyperCLI", email = "support@hypercli.com" }
14
14
  ]
15
15
  dependencies = [
16
- "hypercli-sdk>=0.8.3",
16
+ "hypercli-sdk>=0.8.7",
17
17
  "openai>=2.8.1",
18
18
  "typer>=0.20.0",
19
19
  "rich>=14.2.0",
@@ -25,7 +25,7 @@ dependencies = [
25
25
 
26
26
  [project.optional-dependencies]
27
27
  comfyui = [
28
- "hypercli-sdk[comfyui]>=0.8.3",
28
+ "hypercli-sdk[comfyui]>=0.8.7",
29
29
  ]
30
30
  wallet = [
31
31
  "x402[httpx,evm]>=2.0.0",
@@ -35,7 +35,7 @@ wallet = [
35
35
  "qrcode[pil]>=7.4.0",
36
36
  ]
37
37
  all = [
38
- "hypercli-sdk[comfyui]>=0.8.3",
38
+ "hypercli-sdk[comfyui]>=0.8.7",
39
39
  "x402[httpx,evm]>=2.0.0",
40
40
  "eth-account>=0.13.0",
41
41
  "web3>=7.0.0",
@@ -1 +0,0 @@
1
- __version__ = "0.8.6"
File without changes
File without changes