summaryrefslogtreecommitdiff
path: root/setup.py
blob: 48fa1d92e2db4ea2d7f3ae9b2f8121e49c35d005 (about) (plain)
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='go.wigust@gmail.com',
    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',
)