Metadata-Version: 2.4
Name: gen-cli
Version: 0.1.2
Summary: Gen-CLI is a Python-based tool to generate boilerplate code and framework templates for multiple programming languages.
Author: Prasad Raju G
License: MIT License
        
        Copyright (c) 2026 Prasad Raju G
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
        
Requires-Python: >=3.13
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file


# Gen-CLI

**Gen-CLI** is a Python-based tool to generate boilerplate code and framework templates for multiple programming languages.

It supports both single-file and full project generation using templates, making it easy to start projects quickly.

---

## Usage

```bash
gen <command> [options]
````

---

## Commands

| Command  | Description                              |
| -------- | ---------------------------------------- |
| `list`   | List available languages and frameworks. |
| `doctor` | Check environment and configuration.     |
| `help`   | Show this help message.                  |

---

## Options (for `new` command)

| Option                  | Description                                         |
| ----------------------- | --------------------------------------------------- |
| `--dry-run`             | Show what would be generated without writing files. |
| `--overwrite`           | Overwrite existing files if they exist.             |
| `--project-name <name>` | Name to use in templates (default: `myapp`).        |
| `--author <name>`       | Author name to use in templates (optional).         |

---

## Supported Languages & Frameworks

| Language   | Frameworks             |
| ---------- | ---------------------- |
| Python     | flask, fastapi, django |
| Go         | cli, web               |
| Rust       | actix, rocket          |
| C          | standard               |
| C++        | standard               |
| Java       | spring, standard       |
| JavaScript | node, react, vue       |
| HTML       | standard               |

---

## Examples

```bash
# Generate a single file using Python Flask template
gen new main.py python flask --project-name myapp

# Generate a full FastAPI project
gen new myapp python fastapi --dry-run

# Generate a Go CLI project
gen new app.go go cli

# List all supported languages and frameworks
gen list

# Check environment
gen doctor
```

---

## Help

```bash
gen help
```

Show the general help message.

---

