-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
32 lines (28 loc) · 912 Bytes
/
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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
PAM Fingerprint
Copyright 2014 Philipp Meisberger <[email protected]>,
Bastian Raschke <[email protected]>
All rights reserved.
"""
from setuptools import setup
from src.pamfingerprint import __version__
setup(
name='libpam-fingerprint',
version=__version__,
description='Linux Pluggable Authentication Module (PAM) for fingerprint authentication',
author='Philipp Meisberger',
author_email='[email protected]',
url='https://www.pm-codeworks.de/pamfingerprint.html',
license='AGPL',
package_dir={'': 'src'},
packages=['pamfingerprint'],
install_requires=['pyfingerprint'],
classifiers=[
'Intended Audience :: System Administrators',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Operating System :: POSIX :: Linux',
]
)