|
|
@ -1,14 +1,18 @@ |
|
|
|
#!/usr/bin/env python3 |
|
|
|
|
|
|
|
from distutils.core import setup |
|
|
|
from setuptools import setup |
|
|
|
|
|
|
|
VERSION = "0.1" |
|
|
|
|
|
|
|
setup(name="esgp", |
|
|
|
version=VERSION, |
|
|
|
description="Enhanced SuperGenPass application", |
|
|
|
description="Enhanced SuperGenPass", |
|
|
|
author="Johann Schmitz", |
|
|
|
url="https://git.ercpe.de/ercpe/esgp", |
|
|
|
license="GPLv3", |
|
|
|
packages=['esgp'], |
|
|
|
install_requires=[ |
|
|
|
'daiquiri', |
|
|
|
'PyQt5', |
|
|
|
], |
|
|
|
) |