Metadata-Version: 2.1
Name: genpass-cli
Version: 0.1.0
Summary: A simple yet powerful password generator
Home-page: https://github.com/tahzeer/genpass-cli
Author: tahzeer
Author-email: tahzeer.work@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pyperclip>=1.8.2

# GenPass CLI

A simple yet powerful command-line password generator.

## Features

- Generate secure passwords with customizable options
- Copy passwords directly to clipboard
- Specify password length
- Include/exclude special characters, numbers, and uppercase letters
- Quiet mode for scripting

## Installation

```bash
pip install genpass-cli
```

## Usage

Basic usage:
```bash
genpass

# Generate a longer password
genpass -l 16

# Generate password without special characters
genpass --no-special

# Generate and copy to clipboard
genpass -c

# Quiet mode (only output password)
genpass -q
```

## Examples

```bash
# Generate a 20-character password with all character types
genpass -l 20

# Generate a simple password (only letters and numbers)
genpass --no-special

# Generate and copy to clipboard silently
genpass -q -c
```
