Metadata-Version: 2.4
Name: cftcli
Version: 2.10.1
Summary: CloudFormation Cli
Project-URL: Homepage, https://github.com/tmb28054/cftcli
Author-email: Topaz Bott <topaz@topazhome.net>
License: Apache License 2.0
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Requires-Python: >=3.10
Requires-Dist: boto3
Requires-Dist: diskcache
Requires-Dist: halo
Requires-Dist: pyyaml
Requires-Dist: tabulate
Requires-Dist: termcolor
Provides-Extra: test
Requires-Dist: coverage>=7.0; extra == 'test'
Requires-Dist: pytest-cov>=4.0; extra == 'test'
Requires-Dist: pytest>=7.0; extra == 'test'
Description-Content-Type: text/markdown

# Welcome to **CFT CLI**

CLI commands to ease the interaction with CloudFormation while developing and testing CloudFormation Stacks.

## Installation

```bash
pip install cftcli
```

## Quick Start

```bash
# Deploy a stack
deploy-stack --stack my-stack --filename template.yaml

# List stacks
list-stacks

# Describe a stack
describe-stack my-stack

# Delete a stack
delete-stack --stack my-stack
```

## Commands

- **deploy-stack**: Create or update a stack
- **delete-stack**: Delete a stack
- **list-stacks**: List all stacks in a region
- **describe-stack**: Display stack details
- **attach-stack**: Monitor stack changes in real-time
- **lock-stack**: Apply stack policy and termination protection
- **unlock-stack**: Remove stack policy restrictions
- **stack-policy**: Display current stack policy
- **list-pipelines**: List all pipelines in a region
- **codebuild**: Execute a CodeBuild project

## Documentation

Complete documentation is available in the [docs/](docs/) folder:

- [Installation Guide](docs/installation.md)
- [Quick Start](docs/quickstart.md)
- [Commands Reference](docs/commands.md)
- [Configuration](docs/configuration.md)
- [Examples](docs/examples.md)
- [API Reference](docs/api.md)

## License

Apache License 2.0
