File: setup.py

package info (click to toggle)
python-pam 0.4.2-19
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 276 kB
  • sloc: ansic: 550; python: 48; sh: 7; makefile: 4
file content (17 lines) | stat: -rw-r--r-- 380 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#! /usr/bin/env python

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

from setuptools import setup, Extension

ext = Extension(
    name="PAM",
    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])