File: setup.py

package info (click to toggle)
python-pam 0.4.2-13.2
  • links: PTS
  • area: main
  • in suites: buster, stretch
  • size: 108 kB
  • ctags: 51
  • sloc: ansic: 518; python: 50; makefile: 44
file content (19 lines) | stat: -rw-r--r-- 438 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#! /usr/bin/env python

"""Setup script for the Python-PAM module distribution."""

import distutils
from distutils.core import setup
from distutils.extension import Extension

ext = Extension(
    name="PAMmodule",
    libraries=["pam","pam_misc"],
    sources=["PAMmodule.c"]
)
##print ext.__dict__; sys.exit(1)

setup (name = 'PAM',
       version = '0.4.2',
       description = 'Python bindings for PAM',
       ext_modules = [ext])