setup.py 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. import os
  2. from setuptools import setup
  3. def read(fname):
  4. return open(os.path.join(os.path.dirname(__file__), fname)).read()
  5. __sdesc = 'Python PAM module using ctypes, py3/py2'
  6. setup(name = 'python-pam',
  7. description = __sdesc,
  8. long_description = read('README.md'),
  9. py_modules = ['pam'],
  10. version = '1.8.4',
  11. author = 'David Ford',
  12. author_email = 'david@blue-labs.org',
  13. maintainer = 'David Ford',
  14. maintainer_email = 'david@blue-labs.org',
  15. url = 'https://github.com/FirefighterBlu3/python-pam',
  16. download_url = 'https://github.com/FirefighterBlu3/python-pam',
  17. license = 'License :: OSI Approved :: MIT License',
  18. platforms = ['i686','x86_64'],
  19. classifiers = [
  20. 'Development Status :: 6 - Mature',
  21. 'Environment :: Plugins',
  22. 'Intended Audience :: Developers',
  23. 'Intended Audience :: Information Technology',
  24. 'Intended Audience :: System Administrators',
  25. 'License :: OSI Approved :: MIT License',
  26. 'Operating System :: POSIX',
  27. 'Operating System :: POSIX :: Linux',
  28. 'Programming Language :: Python',
  29. 'Programming Language :: Python :: 2',
  30. 'Programming Language :: Python :: 3',
  31. 'Topic :: Security',
  32. 'Topic :: System :: Systems Administration :: Authentication/Directory',
  33. ],
  34. )