Metadata-Version: 2.4
Name: create-mountaineer-app
Version: 0.10.0.dev4
Summary: Easily get started with a new Mountaineer project.
Author-email: Pierce Freeman <pierce@freeman.vc>
Requires-Python: <3.14,>=3.10
Requires-Dist: click>=8.1.8
Requires-Dist: jinja2>=3.1.6
Requires-Dist: pydantic>=2.10.6
Requires-Dist: questionary>=2.1.0
Requires-Dist: toml>=0.10.2
Description-Content-Type: text/markdown

![Mountaineer Header](https://raw.githubusercontent.com/piercefreeman/mountaineer/main/media/header.png)

# Project Template

CLI to setup a basic scaffolding for mountaineer. This provides a simple base project that can be generated via UV.

```bash
uv run create-mountaineer-app
```

## Installing UV

UV is a fast Python package installer and resolver, written in Rust. Follow their [install guide](https://github.com/astral-sh/uv#installation) to get started.

## Development

If you're making frequent changes in development, you can create a fresh project directory:

```bash
rm -rf test-project && uv run create-mountaineer-app --output-path test-project --mountaineer-dev-path ../
```

For local development on the CLI itself, install in editable mode:

```bash
uv pip install -e .
```
