Metadata-Version: 2.4
Name: aftr
Version: 0.2.0
Summary: CLI for bootstrapping Python data projects with UV, mise, and papermill
Requires-Python: >=3.11
Requires-Dist: inquirerpy>=0.3.4
Requires-Dist: rich>=13.0.0
Requires-Dist: typer>=0.9.0
Description-Content-Type: text/markdown

# aftr

CLI for bootstrapping Python data projects with UV, mise, and papermill.

## Installation

```bash
# Install globally with UV
uv tool install aftr

# Or run directly with uvx
uvx aftr init my-project
```

## Usage

### Initialize a new project

```bash
aftr init my-data-project
```

This creates a new directory with:
- `pyproject.toml` - UV project config with pandas, polars, jupyter, papermill
- `.mise.toml` - mise tool versions (Python, UV)
- `notebooks/` - Jupyter notebooks directory with example
- `src/` - Python source code
- `data/` - Input data (gitignored)
- `outputs/` - Output files (gitignored)

## Development

```bash
cd packages/cli
uv sync
uv run aftr --help
```
