Metadata-Version: 2.4
Name: cli-standard-kit
Version: 1.0.0
Summary: Unified CLI project template and initializer
Author: Cenk Kabahasanoglu
License: MIT
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: cookiecutter>=2.5

# CLI Standard Kit (Python Installer Version)

This package provides a **self-installing CLI** for creating standardized Python command-line tools.

## 🚀 Usage

```bash
pip install git+https://github.com/c3nk/cookiecutter-cli-standard-kit.git
cli-standard-kit init mytool
```

### What it does
1. Generates a new project from the cookiecutter template  
2. Initializes a local Git repository  
3. Creates and activates a `.venv` environment  
4. Provides ready-to-run CLI structure following standard rules

### Example output
```
🚀 Creating new CLI project: mytool
📁 Entered: /path/to/mytool
🐍 Creating virtual environment (.venv)...
✅ Virtual environment created.
📦 Project ready!
➡ cd mytool && source .venv/bin/activate && python src/mytool/cli.py --help
```
