-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (37 loc) · 1.22 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
"""Package recipe."""
import setuptools
setuptools.setup(
name='openvpn-mintotp',
version='0.0.1',
author='Oleg Pykhalov',
author_email='[email protected]',
description='OpenVPN with authentication via MinTOTP',
url='https://github.com/kitnil/openvpn-mintotp',
license='GPLv3+',
dependency_links=['https://github.com/susam/mintotp/tarball/0.3.0#egg=mintotp-0.3.0'],
install_requires=[
'pexpect',
'mintotp',
],
py_modules=['openvpn_otp'],
entry_points={
'console_scripts': {
'openvpn-mintotp = openvpn_otp:main'
}
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Security',
'Topic :: Security :: Cryptography',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
'Topic :: Utilities',
],
keywords='openvpn totp hotp otp hmac cryptography 2fa authenticator',
)