1import os
2from setuptools import setup
3
4def read(fname):
5    return open(os.path.join(os.path.dirname(__file__), fname)).read()
6
7__sdesc = 'Python PAM module using ctypes, py3/py2'
8
9setup(name             = 'python-pam',
10      description      =  __sdesc,
11      long_description = read('README.md'),
12      py_modules       = ['pam'],
13      version          = '1.8.4',
14      author           = 'David Ford',
15      author_email     = 'david@blue-labs.org',
16      maintainer       = 'David Ford',
17      maintainer_email = 'david@blue-labs.org',
18      url              = 'https://github.com/FirefighterBlu3/python-pam',
19      download_url     = 'https://github.com/FirefighterBlu3/python-pam',
20      license          = 'License :: OSI Approved :: MIT License',
21      platforms        = ['i686','x86_64'],
22      classifiers      = [
23          'Development Status :: 6 - Mature',
24          'Environment :: Plugins',
25          'Intended Audience :: Developers',
26          'Intended Audience :: Information Technology',
27          'Intended Audience :: System Administrators',
28          'License :: OSI Approved :: MIT License',
29          'Operating System :: POSIX',
30          'Operating System :: POSIX :: Linux',
31          'Programming Language :: Python',
32          'Programming Language :: Python :: 2',
33          'Programming Language :: Python :: 3',
34          'Topic :: Security',
35          'Topic :: System :: Systems Administration :: Authentication/Directory',
36          ],
37      )
38