androincli 0.1.5__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.
- androincli-0.1.5/PKG-INFO +65 -0
- androincli-0.1.5/README.md +51 -0
- androincli-0.1.5/androincli.egg-info/PKG-INFO +65 -0
- androincli-0.1.5/androincli.egg-info/SOURCES.txt +8 -0
- androincli-0.1.5/androincli.egg-info/dependency_links.txt +1 -0
- androincli-0.1.5/androincli.egg-info/entry_points.txt +2 -0
- androincli-0.1.5/androincli.egg-info/requires.txt +5 -0
- androincli-0.1.5/androincli.egg-info/top_level.txt +1 -0
- androincli-0.1.5/pyproject.toml +28 -0
- androincli-0.1.5/setup.cfg +4 -0
|
@@ -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,51 @@
|
|
|
1
|
+
# andro-cli — Source Package
|
|
2
|
+
|
|
3
|
+
This directory is the **uv project root**. It contains the source code, virtual environment, and package config.
|
|
4
|
+
|
|
5
|
+
## Quick Start
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
# Install dependencies
|
|
9
|
+
uv --directory src sync
|
|
10
|
+
|
|
11
|
+
# Run the app
|
|
12
|
+
uv --directory src run python main.py
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
Or from inside `src/`:
|
|
16
|
+
```bash
|
|
17
|
+
uv venv
|
|
18
|
+
source .venv/Scripts/activate # Git Bash
|
|
19
|
+
uv sync
|
|
20
|
+
python main.py
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
## Structure
|
|
24
|
+
|
|
25
|
+
```
|
|
26
|
+
src/
|
|
27
|
+
├── main.py # Entry point (API key check → TUI)
|
|
28
|
+
├── pyproject.toml # Package config & dependencies
|
|
29
|
+
├── uv.lock # Locked dependency versions
|
|
30
|
+
├── agent/ # Core agent logic
|
|
31
|
+
│ ├── config.py # API key & config management
|
|
32
|
+
│ ├── setup.py # Gemini AsyncOpenAI client
|
|
33
|
+
│ └── tools/ # Agent tools (files, network, system)
|
|
34
|
+
└── ui/ # Textual TUI
|
|
35
|
+
├── app.py # AgentApp
|
|
36
|
+
└── components/ # Reusable widgets
|
|
37
|
+
├── bubble.py # Chat message bubble
|
|
38
|
+
└── input_bar.py # Input + send button
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
## Adding Dependencies
|
|
42
|
+
|
|
43
|
+
```bash
|
|
44
|
+
uv --directory src add <package>
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
## Running Tests
|
|
48
|
+
|
|
49
|
+
```bash
|
|
50
|
+
uv --directory src run pytest
|
|
51
|
+
```
|
|
@@ -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 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "androincli"
|
|
7
|
+
version = "0.1.5"
|
|
8
|
+
description = "A CLI Agent powered by Gemini AI"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.10"
|
|
11
|
+
authors = [
|
|
12
|
+
{ name = "Andro", email = "androkingdom1@gmail.com" }
|
|
13
|
+
]
|
|
14
|
+
license = { text = "MIT" }
|
|
15
|
+
dependencies = [
|
|
16
|
+
"openai>=1.0.0",
|
|
17
|
+
"rich>=13.0.0",
|
|
18
|
+
"textual>=0.100.0",
|
|
19
|
+
"python-dotenv>=1.0.0",
|
|
20
|
+
"openai-agents>=0.9.1",
|
|
21
|
+
]
|
|
22
|
+
|
|
23
|
+
[project.scripts]
|
|
24
|
+
andro = "src.main:main"
|
|
25
|
+
|
|
26
|
+
[tool.setuptools.packages.find]
|
|
27
|
+
where = ["."]
|
|
28
|
+
include = ["src.*"]
|