setup.py 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. from setuptools import setup, find_packages
  2. import sys, os
  3. version = '0.1.3'
  4. setup(name='pam',
  5. version=version,
  6. description="PAM interface using ctypes",
  7. long_description="""\
  8. An interface to the Pluggable Authentication Modules (PAM) library on linux, written in pure python (using ctypes)""",
  9. classifiers=["Development Status :: 3 - Alpha",
  10. "Intended Audience :: Developers",
  11. "License :: OSI Approved :: MIT License",
  12. "Operating System :: POSIX :: Linux",
  13. "Operating System :: MacOS :: MacOS X",
  14. "Programming Language :: Python",
  15. "Topic :: Software Development :: Libraries :: Python Modules",
  16. "Topic :: System :: Systems Administration :: Authentication/Directory"
  17. ],
  18. keywords='',
  19. author='Chris AtLee',
  20. author_email='chris@atlee.ca',
  21. url='http://atlee.ca/software/pam',
  22. download_url = "http://atlee.ca/software/pam/dist/%s" % version,
  23. license='MIT',
  24. py_modules=["pam"],
  25. zip_safe=True,
  26. install_requires=[],
  27. entry_points="""
  28. # -*- Entry points: -*-
  29. """,
  30. )