Initial import to Tizen
[profile/ivi/python-PyPAM.git] / setup.py
1 #!/usr/bin/env python
2
3 from distutils.core import setup, Extension
4
5 setup(
6     name='PyPAM',
7     version='0.5.0',
8     description='PAM (Pluggable Authentication Module) bindings for Python',
9     author='Rob Riggs',
10     author_email='rob+pypam@pangalactic.org',
11     url='http://www.pangalactic.org/PyPAM',
12     license='LGPL',
13     ext_modules=[
14         Extension(
15             'PAMmodule',
16             ['PAMmodule.c'],
17             libraries=['pam', 'pam_misc'],
18             extra_compile_args = ['-std=c99'],
19         )
20     ],
21 )
22