setup.py 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. #!/usr/bin/env python
  2. '''
  3. A CLI front-end to a running salt-api system
  4. '''
  5. import setuptools
  6. with open("README.rst", "r") as fh:
  7. long_description = fh.read()
  8. setup_kwargs = {
  9. 'name': 'salt-pepper',
  10. 'description': __doc__.strip(),
  11. 'author': 'Seth House',
  12. 'author_email': 'shouse@saltstack.com',
  13. 'url': 'http://saltstack.com',
  14. 'long_description': long_description,
  15. 'long_description_content_type': "text/x-rst",
  16. 'use_scm_version': True,
  17. 'setup_requires': ['setuptools_scm'],
  18. 'classifiers': [
  19. 'Programming Language :: Python',
  20. 'Programming Language :: Cython',
  21. 'Programming Language :: Python :: 2.7',
  22. 'Programming Language :: Python :: 3.4',
  23. 'Programming Language :: Python :: 3.5',
  24. 'Programming Language :: Python :: 3.6',
  25. 'Development Status :: 5 - Production/Stable',
  26. 'Environment :: Console',
  27. 'Intended Audience :: Developers',
  28. 'Intended Audience :: Information Technology',
  29. 'Intended Audience :: System Administrators',
  30. 'License :: OSI Approved :: Apache Software License',
  31. 'Operating System :: POSIX :: Linux',
  32. 'Topic :: System :: Clustering',
  33. 'Topic :: System :: Distributed Computing',
  34. ],
  35. 'packages': [
  36. 'pepper',
  37. ],
  38. 'extras_require': {
  39. 'kerberos': ["requests-gssapi>=1.1.0"],
  40. },
  41. 'scripts': [
  42. 'scripts/pepper',
  43. ]
  44. }
  45. if __name__ == '__main__':
  46. setuptools.setup(**setup_kwargs)