Added setup.py

This commit is contained in:
Maximilian P. Käfer 2022-03-25 18:50:43 +01:00
parent 004c521ef5
commit c8003f0ca7
Signed by: mpk
GPG Key ID: 035869C949377C5C
1 changed files with 9 additions and 0 deletions

9
setup.py Normal file
View File

@ -0,0 +1,9 @@
setup(
name='pwgen',
version='1.0',
description='Random Password Generator Module',
author="Maximilian Käfer",
author_email='maxi@kske.dev',
packages=['pwgen'],
install_requires=['wheel'],
)