Metadata-Version: 2.4
Name: menda-cli
Version: 0.2.9
Summary: A CLI for building, deploying and managing menda data products.
Author-email: jpm2617 <jose.moreno@mendaml.com>
Requires-Python: >=3.11
Requires-Dist: click>=8.3.0
Requires-Dist: cookiecutter>=2.6.0
Requires-Dist: inquirerpy>=0.3.4
Requires-Dist: pydantic-settings>=2.0.0
Requires-Dist: pydantic>=2.0.0
Requires-Dist: requests>=2.32.0
Requires-Dist: rich>=13.0.0
Requires-Dist: structlog>=25.0.0
Description-Content-Type: text/markdown

# menda-cli

A CLI for building, deploying and managing menda data products.

## Installation

```bash
uv add menda-cli
```

## Development

### Setup

```bash
# Clone the repository
git clone https://github.com/mendaml/menda-cli.git
cd menda-cli

# Install dependencies
uv sync
```

### Linting

```bash
# Run all linters (format, style, typing)
uv run poe lint-all

# Or run individually
uv run poe lint-format   # Format code
uv run poe lint-style    # Check style
uv run poe lint-typing   # Check types
```

### Testing

```bash
# Run tests
uv run poe test

# Run tests with coverage
uv run poe test-cov
```

---
*Generated from [menda-cookiecutter-python](https://github.com/mendaml/menda-cookiecutter-python).*
