forked from FirefighterBlu3/python-pam
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
38 lines (35 loc) · 1.53 KB
/
Copy pathsetup.py
File metadata and controls
38 lines (35 loc) · 1.53 KB
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
importos
fromsetuptoolsimportsetup
defread(fname):
returnopen(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',
],
)