1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
""" config for setuptools/stdeb """
from setuptools import setup
from luckyLUKS import VERSION_STRING
long_desc = """luckyLUKS is a Linux GUI for creating and (un-)locking
encrypted volumes from container files. Unlocked containers leave
an icon in the systray as a reminder to close them eventually ;)
Supports cryptsetup/LUKS and Truecrypt container files.
The container is basically a large file that encapsulates an
encrypted partition. This simplifies handling and backup of
encrypted data for casual users.
luckyLUKS follows a keep-it-simple philosophy for creating and using
encrypted containers, that aims to keep users from shooting themselves
in the foot. For quick access the GUI offers to add a shortcut for
unlocking a specific container to the start menu or on the desktop.
For more information and a complete FAQ see
https://github.com/jas-per/luckyLUKS"""
setup(name='luckyLUKS',
version=VERSION_STRING,
author='Jasper van Hoorn',
author_email='muzius@gmail.com',
url='https://github.com/jas-per/luckyLUKS',
download_url='https://github.com/jas-per/luckyLUKS',
description='GUI for encrypted LUKS or TrueCrypt containers',
long_description=long_desc,
platforms=['Linux'],
packages=['luckyLUKS'],
package_data={'luckyLUKS': ['locale/*/LC_MESSAGES/*']},
scripts=['luckyluks'],
keywords='python tools utils cryptsetup LUKS TrueCrypt encryption container block device mapper GUI tcplay',
license='GPL',
classifiers=['Development Status :: 5 - Production/Stable',
'Environment :: X11 Applications :: Qt',
'Intended Audience :: End Users/Desktop',
'Natural Language :: English',
'Natural Language :: German',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Topic :: Utilities',
'Topic :: Security :: Cryptography',
],
)
|