Metadata-Version: 2.4
Name: ale-coder
Version: 0.1.1
Summary: A CLI tool to generate code using Gemini AI
Author: Allen Joe
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: google-generativeai
Dynamic: author
Dynamic: description
Dynamic: description-content-type
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# AllenJoe Coder CLI

A simple CLI tool to generate code directly in your terminal using Gemini AI.

## Installation

To install the tool on any machine:

1. Clone or copy this folder to the target machine.
2. Open a terminal in the folder.
3. Run:
   ```bash
   pip install .
   ```

## Usage

Once installed, you can use the `ask` command from anywhere:

```bash
ask "write a python script to scrape a website"
```

The tool will output the raw source code directly to your terminal.

## Requirements
- Python 3.9+
- `google-generativeai` (installed automatically)
