forked from chevah/python-pam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (29 loc) · 1.09 KB
/
setup.py
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
from setuptools import setup
version = '0.1.4.chevah'
setup(name='pam',
version=version,
description="PAM interface using ctypes",
long_description="""\
An interface to the Pluggable Authentication Modules (PAM) library on linux, written in pure python (using ctypes)""",
classifiers=["Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Systems Administration :: Authentication/Directory"
],
keywords='',
author='Chris AtLee',
author_email='chris@atlee.ca',
url='http://atlee.ca/software/pam',
download_url="http://atlee.ca/software/pam/dist/%s" % version,
license='MIT',
py_modules=["pam"],
zip_safe=True,
install_requires=[],
entry_points="""
# -*- Entry points: -*-
""",
)