Metadata-Version: 2.4
Name: celbridge
Version: 0.1.0
Summary: A command-line interface for managing Celbridge projects
Author-email: "Celbridge.org" <contact@celbridge.org>
License-Expression: MIT
Project-URL: Homepage, https://celbridge.org
Project-URL: Repository, https://github.com/celbridge-org/celbridge
Project-URL: Issues, https://github.com/celbridge-org/celbridge/issues
Keywords: celbridge,cli
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Environment :: Console
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: typer<1,>=0.12
Requires-Dist: rich<15,>=13
Provides-Extra: dev
Requires-Dist: pytest>=7.0; extra == "dev"

# Celbridge CLI

A command-line interface for managing Celbridge projects.

## Overview

The Celbridge CLI provides a suite of commands for working with Celbridge projects.

## Current Implementation

Currently implements the `version` command as a demonstration of the CLI architecture:

- Multiple output formats (`--format json|text`)
- Clean command structure
- Extensible design for adding new commands

## Usage

The Celbridge CLI is typically installed as part of the Celbridge application. You can also install it directly:

```bash
# From PyPI (when published)
pip install celbridge

# For development
pip install -e packages/celbridge
```

Basic commands:

```bash
# Display version information
celbridge version
celbridge version --format json
```
