Metadata-Version: 2.4
Name: vibesmith
Version: 0.1.0
Summary: Add your description here
Project-URL: Homepage, https://github.com/Shyam-Sundar-Reddy/vibesmith
Project-URL: Repository, https://github.com/Shyam-Sundar-Reddy/vibesmith
License: MIT
License-File: LICENSE
Requires-Python: >=3.12
Requires-Dist: typer>=0.12
Description-Content-Type: text/markdown

# vibesmith

A CLI tool, built with [Typer](https://typer.tiangolo.com/).

## Install

```bash
pip install vibesmith
```

## Usage

```bash
vibesmith hello
vibesmith hello Sam
vibesmith --version
```

## Development

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

## Release

1. Bump `version` in `pyproject.toml` and `src/vibesmith/__init__.py`.
2. Commit and push to `main`.
3. Tag the release and push the tag:

   ```bash
   git tag v0.1.0
   git push origin v0.1.0
   ```

4. The `Publish to PyPI` GitHub Actions workflow builds and publishes the
   package automatically. It requires a `PYPI_API_TOKEN` repository secret
   (Settings → Secrets and variables → Actions → New repository secret).
