2015-04-24 16:58:39 +03:00
|
|
|
# Copyright (c) 2014 Yubico AB
|
|
|
|
# All rights reserved.
|
2014-02-18 17:02:47 +04:00
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
2015-04-24 16:58:39 +03:00
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
2014-02-18 17:02:47 +04:00
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
2015-04-24 16:58:39 +03:00
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
#
|
|
|
|
# Additional permission under GNU GPL version 3 section 7
|
|
|
|
#
|
|
|
|
# If you modify this program, or any covered work, by linking or
|
|
|
|
# combining it with the OpenSSL project's OpenSSL library (or a
|
|
|
|
# modified version of that library), containing parts covered by the
|
|
|
|
# terms of the OpenSSL or SSLeay licenses, We grant you additional
|
|
|
|
# permission to convey the resulting work. Corresponding Source for a
|
|
|
|
# non-source form of such a combination shall include the source code
|
|
|
|
# for the parts of OpenSSL used as well as that of the covered work.
|
2014-02-18 17:02:47 +04:00
|
|
|
|
|
|
|
|
2015-04-24 16:58:39 +03:00
|
|
|
from setuptools import setup, find_packages
|
2015-05-14 14:58:55 +03:00
|
|
|
from yubioath.yubicommon import release, get_version
|
|
|
|
from yubioath.yubicommon.qt import qt_resources, qt_sdist
|
2014-02-18 17:02:47 +04:00
|
|
|
|
|
|
|
setup(
|
2014-02-19 16:00:24 +04:00
|
|
|
name='yubioath-desktop',
|
2014-02-18 17:02:47 +04:00
|
|
|
version=get_version(),
|
2015-04-24 16:58:39 +03:00
|
|
|
author='Dain Nilsson',
|
|
|
|
author_email='dain@yubico.com',
|
2014-02-18 17:02:47 +04:00
|
|
|
maintainer='Yubico Open Source Maintainers',
|
|
|
|
maintainer_email='ossmaint@yubico.com',
|
2014-02-19 16:00:24 +04:00
|
|
|
url='https://github.com/Yubico/yubioath-desktop',
|
2014-05-04 12:16:01 +04:00
|
|
|
license='GPLv3+',
|
|
|
|
description='Crossplatform tool for generating TOTP & HOTP codes with a Yubikey NEO',
|
2015-04-24 16:58:39 +03:00
|
|
|
packages=find_packages(),
|
2015-05-14 14:58:55 +03:00
|
|
|
scripts=['scripts/yubioath', 'scripts/yubioath-cli'],
|
2014-02-18 17:02:47 +04:00
|
|
|
setup_requires=['nose>=1.0'],
|
2015-04-24 16:58:39 +03:00
|
|
|
install_requires=['PySide', 'pyscard', 'pycrypto'],
|
2014-02-18 17:02:47 +04:00
|
|
|
test_suite='nose.collector',
|
|
|
|
tests_require=[''],
|
2015-05-14 14:58:55 +03:00
|
|
|
cmdclass={'release': release, 'qt_resources': qt_resources('yubioath'),
|
2015-04-24 16:58:39 +03:00
|
|
|
'sdist': qt_sdist},
|
2014-02-18 17:02:47 +04:00
|
|
|
classifiers=[
|
2014-05-04 12:16:01 +04:00
|
|
|
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
|
2014-02-18 17:02:47 +04:00
|
|
|
'Operating System :: OS Independent',
|
|
|
|
'Programming Language :: Python',
|
2014-04-02 12:05:28 +04:00
|
|
|
'Development Status :: 4 - Beta',
|
2014-02-18 17:02:47 +04:00
|
|
|
'Environment :: X11 Applications :: Qt',
|
|
|
|
'Intended Audience :: End Users/Desktop',
|
|
|
|
'Topic :: Security :: Cryptography',
|
|
|
|
'Topic :: Utilities'
|
|
|
|
]
|
|
|
|
)
|