hanzo 0.1.0__py3-none-any.whl

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.

Potentially problematic release.


This version of hanzo might be problematic. Click here for more details.

hanzo/__init__.py ADDED
@@ -0,0 +1,12 @@
1
+ """Hanzo AI CLI - Unified CLI for Local, Private, Free AI Infrastructure.
2
+
3
+ This package provides the 'hanzo' command which is a wrapper around hanzo-cli.
4
+ """
5
+
6
+ __version__ = "0.1.0"
7
+
8
+ # Re-export everything from hanzo_cli if it's installed
9
+ try:
10
+ from hanzo_cli import *
11
+ except ImportError:
12
+ pass
@@ -0,0 +1,48 @@
1
+ Metadata-Version: 2.4
2
+ Name: hanzo
3
+ Version: 0.1.0
4
+ Summary: Hanzo AI CLI - Unified CLI for Local, Private, Free AI Infrastructure
5
+ Project-URL: Homepage, https://hanzo.ai
6
+ Project-URL: Repository, https://github.com/hanzoai/python-sdk
7
+ Project-URL: Documentation, https://docs.hanzo.ai/cli
8
+ Project-URL: Bug Tracker, https://github.com/hanzoai/python-sdk/issues
9
+ Author-email: Hanzo AI <dev@hanzo.ai>
10
+ Keywords: agents,ai,cli,hanzo,llm,local-ai,mcp,private-ai
11
+ Classifier: Development Status :: 4 - Beta
12
+ Classifier: Environment :: Console
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: License :: OSI Approved :: Apache Software License
15
+ Classifier: Operating System :: OS Independent
16
+ Classifier: Programming Language :: Python :: 3
17
+ Classifier: Programming Language :: Python :: 3.8
18
+ Classifier: Programming Language :: Python :: 3.9
19
+ Classifier: Programming Language :: Python :: 3.10
20
+ Classifier: Programming Language :: Python :: 3.11
21
+ Classifier: Programming Language :: Python :: 3.12
22
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
23
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
24
+ Requires-Python: >=3.8
25
+ Requires-Dist: hanzo-cli>=0.1.0
26
+ Description-Content-Type: text/markdown
27
+
28
+ # Hanzo AI CLI
29
+
30
+ This is the main `hanzo` package that provides the Hanzo AI CLI tool.
31
+
32
+ ## Installation
33
+
34
+ ```bash
35
+ pip install hanzo
36
+ ```
37
+
38
+ ## Usage
39
+
40
+ ```bash
41
+ hanzo --help
42
+ ```
43
+
44
+ For more information, see the [hanzo-cli](https://pypi.org/project/hanzo-cli/) package.
45
+
46
+ ## Note
47
+
48
+ This package is a convenience wrapper around `hanzo-cli`. Both packages provide the same `hanzo` command-line tool.
@@ -0,0 +1,5 @@
1
+ hanzo/__init__.py,sha256=04uwVn6FFj6bgX30bXqg3Ge7IePPlwSZF9F7rKcEWb8,299
2
+ hanzo-0.1.0.dist-info/METADATA,sha256=d5qaA1ntNmML8v19VRGs8nBjOk3heiYu_3askkqKYF8,1609
3
+ hanzo-0.1.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
4
+ hanzo-0.1.0.dist-info/entry_points.txt,sha256=8HaR6T2xnnBsWi_jXfn8CBVaKgVfbGjaLsj0gTjP_Zk,45
5
+ hanzo-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.27.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ hanzo = hanzo_cli.cli:main