-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
63 lines (60 loc) · 2.37 KB
/
setup.py
File metadata and controls
63 lines (60 loc) · 2.37 KB
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
55
56
57
58
59
60
61
62
63
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# linotp-auth-pam-python - LinOTP PAM module for pam_python
# Copyright (C) 2010 - 2017 KeyIdentity GmbH
#
# 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 2 of the License, or
# (at your option) any later version.
#
# 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.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# E-mail: linotp@keyidentity.com
# Contact: www.linotp.org
# Support: www.keyidentity.com
#
try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
from pam_py_linotp import __version__
setup(
name='pam_py_linotp',
version=__version__,
description='LinOTP python PAM module',
author='KeyIdentity GmbH',
license='GPLv2+, (C) KeyIdentity GmbH',
author_email='linotp@keyidentity.com',
url='https://www.linotp.org',
packages=['pam_py_linotp'],
include_package_data=True,
install_requires=[
],
data_files=[('/lib/security/', ['src/pam_linotp.py'])],
classifiers=[
"Framework :: Pylons",
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
"Programming Language :: Python",
"Topic :: Internet",
"Topic :: Security",
"Topic :: System :: Systems Administration :: Authentication/Directory"
],
zip_safe=False,
long_description='LinOTP is an open solution for strong two-factor authentication with One Time Passwords.\n\
LinOTP 2 is also open as far as its modular architecture is concerned. \n\
LinOTP 2 aims to not bind you to any decision of the authentication protocol or \n\
it does not dictate you where your user information should be stored. \n\
This is achieved by its new, totally modular architecture.\n\
\n\
This package contains a PAM module for LinOTP written in python.'
)