Metadata-Version: 2.1
Name: kinneyotpgui
Version: 0.0.5
Summary: Graphical user interface for one time pad
Author: Mike Kinney
Author-email: mike.kinney@gmail.com
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python :: 3.10
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: pyside6
Requires-Dist: kinneyotp

# About
Graphical user interface for the kinneyotp (one time pad) module.

# To install

Run the following commands to setup a python virtual environment, then install the module.

```
python3 -m venv venv
venv/bin/activate
pip install kinneyotpgui
```

After the installation, you should be able to run:

```
otp
```

# For a local installation (for development):
```
pip install -r requirements.txt
pip install -e .
```
