METADATA 769 B

12345678910111213141516171819202122232425
  1. Metadata-Version: 2.1
  2. Name: backports.shutil_which
  3. Version: 3.5.2
  4. Summary: Backport of shutil.which from Python 3.3
  5. Home-page: https://github.com/minrk/backports.shutil_which
  6. Author: Min RK
  7. Author-email: benjaminrk@gmail.com
  8. License: Python Software Foundation License
  9. Platform: UNKNOWN
  10. Classifier: Development Status :: 5 - Production/Stable
  11. Classifier: Intended Audience :: Developers
  12. Classifier: License :: OSI Approved :: Python Software Foundation License
  13. Classifier: Programming Language :: Python :: 2.6
  14. Classifier: Programming Language :: Python :: 2.7
  15. Classifier: Programming Language :: Python :: 3
  16. Use Python 3 shutil.which on Python 2::
  17. try:
  18. from shutil import which
  19. except ImportError:
  20. from backports.shutil_which import which