""" drake --------------- Password and encryption utilities. More information at: https://github.com/haukurpallh/drake """ from setuptools import setup, find_packages setup( name='drake', version='0.1', url='https://github.com/haukurpallh/drake', license='MIT', author='haukurpallh', author_email='haukurpallh@gmail.com', description='password and encryption utilities', long_description=__doc__, packages=find_packages(), scripts=['drake.py'], zip_safe=False, platforms='any', install_requires=[ 'gtk', ], classifiers=[ 'Environment :: X11 Applications :: GTK', 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Topic :: Security :: Cryptography', 'Topic :: Software Development :: Libraries :: Python Modules' ] )