Metadata-Version: 2.4
Name: aidex
Version: 0.1.1
Summary: A terminal UI application built with Textual
Author-email: Yuxiang Wu <yuxiang.cs@gmail.com>
License: MIT
Project-URL: Homepage, https://github.com/yuxiang-wu/aidex
Project-URL: Repository, https://github.com/yuxiang-wu/aidex
Project-URL: Issues, https://github.com/yuxiang-wu/aidex/issues
Keywords: textual,tui,terminal,cli
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: textual>=0.41.0
Requires-Dist: click>=8.0.0

# Aidex

A terminal UI application built with [Textual](https://github.com/Textualize/textual).

## Development Setup

This project uses [uv](https://github.com/astral-sh/uv) for dependency management.

```bash
# Clone and setup
git clone <your-repo>
cd aidex
uv sync

# Run the app
uv run aidex

# Check version
uv run aidex --version
```

## Project Structure

```
aidex/
├── __init__.py      # Package initialization
└── app.py           # Textual app + CLI entry point
```

## Adding Dependencies

```bash
uv add package-name
```
