androincli 0.1.5__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.
@@ -0,0 +1,65 @@
1
+ Metadata-Version: 2.4
2
+ Name: androincli
3
+ Version: 0.1.5
4
+ Summary: A CLI Agent powered by Gemini AI
5
+ Author-email: Andro <androkingdom1@gmail.com>
6
+ License: MIT
7
+ Requires-Python: >=3.10
8
+ Description-Content-Type: text/markdown
9
+ Requires-Dist: openai>=1.0.0
10
+ Requires-Dist: rich>=13.0.0
11
+ Requires-Dist: textual>=0.100.0
12
+ Requires-Dist: python-dotenv>=1.0.0
13
+ Requires-Dist: openai-agents>=0.9.1
14
+
15
+ # andro-cli — Source Package
16
+
17
+ This directory is the **uv project root**. It contains the source code, virtual environment, and package config.
18
+
19
+ ## Quick Start
20
+
21
+ ```bash
22
+ # Install dependencies
23
+ uv --directory src sync
24
+
25
+ # Run the app
26
+ uv --directory src run python main.py
27
+ ```
28
+
29
+ Or from inside `src/`:
30
+ ```bash
31
+ uv venv
32
+ source .venv/Scripts/activate # Git Bash
33
+ uv sync
34
+ python main.py
35
+ ```
36
+
37
+ ## Structure
38
+
39
+ ```
40
+ src/
41
+ ├── main.py # Entry point (API key check → TUI)
42
+ ├── pyproject.toml # Package config & dependencies
43
+ ├── uv.lock # Locked dependency versions
44
+ ├── agent/ # Core agent logic
45
+ │ ├── config.py # API key & config management
46
+ │ ├── setup.py # Gemini AsyncOpenAI client
47
+ │ └── tools/ # Agent tools (files, network, system)
48
+ └── ui/ # Textual TUI
49
+ ├── app.py # AgentApp
50
+ └── components/ # Reusable widgets
51
+ ├── bubble.py # Chat message bubble
52
+ └── input_bar.py # Input + send button
53
+ ```
54
+
55
+ ## Adding Dependencies
56
+
57
+ ```bash
58
+ uv --directory src add <package>
59
+ ```
60
+
61
+ ## Running Tests
62
+
63
+ ```bash
64
+ uv --directory src run pytest
65
+ ```
@@ -0,0 +1,5 @@
1
+ androincli-0.1.5.dist-info/METADATA,sha256=sl0CueXDqTdNmMGR5E-JtW0YQXkrOO2eo_-wn3R_auQ,1644
2
+ androincli-0.1.5.dist-info/WHEEL,sha256=YCfwYGOYMi5Jhw2fU4yNgwErybb2IX5PEwBKV4ZbdBo,91
3
+ androincli-0.1.5.dist-info/entry_points.txt,sha256=1c-lGHaaxd3tHj4c-qsxoxnyUrxjJezwsID84wMM93k,40
4
+ androincli-0.1.5.dist-info/top_level.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
5
+ androincli-0.1.5.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (82.0.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ andro = src.main:main
@@ -0,0 +1 @@
1
+