-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
51 lines (50 loc) · 1.62 KB
/
setup.py
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
#!/usr/bin/env python3
"""
Python setuptools script for ``yubu_goog`` tool.
"""
from yubigoog import __version__
from setuptools import setup
setup(
name='yubigoog',
version=__version__,
description='Generate TOTP tokens from Yubikeys, automatically type them.',
long_description=(
"Calculates TOTP tokens from HOTP responses of Yubikeys, includes a "
"setup process and emulated keyboard strokes for typing out the token "
"so you can use it with a keyboard shortcut."
),
author='Greenhost BV',
author_email='info@greenhost.nl',
url='https://github.com/greenhost/yubi-goog',
python_requires='>=2.7, >=3.5.*, <4',
packages=['yubigoog'],
install_requires=[
'PyAutoGUI>=0.9.41',
'python3-xlib>=0.15',
'keyboard>=0.13.2',
'python-yubico>=1.3.3',
],
license='MIT',
classifiers=[
'Development Status :: ',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS :: MacOS',
'Operating System :: POSIX',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Security',
'Topic :: Utilities',
],
keywords='yubikey GoogleAuthenticator totp hotp hid',
entry_points={
'console_scripts': [
'yubigoog = yubigoog.__main__:main'
]
}
)