Metadata-Version: 2.1
Name: genkey
Version: 0.1.0
Summary: A simple command-line tool to generate secure keys and passwords
Home-page: https://github.com/dawid-ai/genkey
Author: [Your Name]
Author-email: dawid-ai <hello@dawid.ai>
License: MIT License
        
        Copyright (c) 2024 [Your Name]
        
        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.
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Topic :: Security :: Cryptography
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# GenKey

A simple command-line tool to generate secure keys and passwords.

## Installation

```bash
pip install genkey
```

## Usage

Generate a key (default 32 characters):
```bash
genkey
```

Generate a 12-character key:
```bash
genkey -c 12
```

Generate a key without special characters:
```bash
genkey -s
```

Generate a key without numbers:
```bash
genkey -n
```

Combine options:
```bash
genkey -c 16 -s -n
```

## Features

- Generates cryptographically secure random keys
- Customizable length
- Option to exclude special characters
- Option to exclude numbers
- Automatically copies to clipboard
- Cross-platform (Windows, macOS, Linux)

## Requirements

For clipboard functionality:
- Windows: No additional requirements
- macOS: No additional requirements
- Linux: xclip (can be installed via `sudo apt-get install xclip` on Debian/Ubuntu)

## License

This project is licensed under the MIT License - see the LICENSE file for details.
