METADATA 1.2 KB

123456789101112131415161718192021222324252627282930313233
  1. Metadata-Version: 2.1
  2. Name: tenacity
  3. Version: 7.0.0
  4. Summary: Retry code until it succeeds
  5. Home-page: https://github.com/jd/tenacity
  6. Author: Julien Danjou
  7. Author-email: julien@danjou.info
  8. License: Apache 2.0
  9. Platform: UNKNOWN
  10. Classifier: Intended Audience :: Developers
  11. Classifier: License :: OSI Approved :: Apache Software License
  12. Classifier: Programming Language :: Python
  13. Classifier: Programming Language :: Python :: 2
  14. Classifier: Programming Language :: Python :: 2.7
  15. Classifier: Programming Language :: Python :: 3
  16. Classifier: Programming Language :: Python :: 3.5
  17. Classifier: Programming Language :: Python :: 3.6
  18. Classifier: Programming Language :: Python :: 3.7
  19. Classifier: Programming Language :: Python :: 3.8
  20. Classifier: Programming Language :: Python :: 3.9
  21. Classifier: Topic :: Utilities
  22. Requires-Dist: six (>=1.9.0)
  23. Requires-Dist: futures (>=3.0) ; python_version == "2.7"
  24. Requires-Dist: monotonic (>=0.6) ; python_version == "2.7"
  25. Requires-Dist: typing (>=3.7.4.1) ; python_version == "2.7"
  26. Provides-Extra: doc
  27. Requires-Dist: reno ; extra == 'doc'
  28. Requires-Dist: sphinx ; extra == 'doc'
  29. Requires-Dist: tornado (>=4.5) ; extra == 'doc'
  30. Tenacity is a general-purpose retrying library to simplify the task of adding retry behavior to just about anything.