File: setup.py

package info (click to toggle)
python-pampy 1.8.2-1%2Bdeb9u1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 104 kB
  • ctags: 41
  • sloc: python: 150; makefile: 4
file content (38 lines) | stat: -rw-r--r-- 1,565 bytes parent folder | download | duplicates (2)
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
import os
from setuptools import setup

def read(fname):
    return open(os.path.join(os.path.dirname(__file__), fname)).read()

__sdesc = 'Python PAM module using ctypes, py3/py2'

setup(name             = 'python-pam',
      description      =  __sdesc,
      long_description = read('README.md'),
      py_modules       = ['pam'],
      version          = '1.8.2',
      author           = 'David Ford',
      author_email     = 'david@blue-labs.org',
      maintainer       = 'David Ford',
      maintainer_email = 'david@blue-labs.org',
      url              = 'https://github.com/FirefighterBlu3/python-pam',
      download_url     = 'https://github.com/FirefighterBlu3/python-pam',
      bugtrack_url     = 'https://github.com/FirefighterBlu3/python-pam/issues',
      license          = 'License :: OSI Approved :: MIT License',
      platforms        = ['i686','x86_64'],
      classifiers      = [
          'Development Status :: 6 - Mature',
          'Environment :: Plugins',
          'Intended Audience :: Developers',
          'Intended Audience :: Information Technology',
          'Intended Audience :: System Administrators',
          'License :: OSI Approved :: MIT License',
          'Operating System :: POSIX',
          'Operating System :: POSIX :: Linux',
          'Programming Language :: Python',
          'Programming Language :: Python :: 2',
          'Programming Language :: Python :: 3',
          'Topic :: Security',
          'Topic :: System :: Systems Administration :: Authentication/Directory',
          ],
      )