METADATA 1.1 KB

123456789101112131415161718192021222324252627282930
  1. Metadata-Version: 2.1
  2. Name: tenacity
  3. Version: 8.4.1
  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. Classifier: Intended Audience :: Developers
  10. Classifier: License :: OSI Approved :: Apache Software License
  11. Classifier: Programming Language :: Python
  12. Classifier: Programming Language :: Python :: 3
  13. Classifier: Programming Language :: Python :: 3 :: Only
  14. Classifier: Programming Language :: Python :: 3.8
  15. Classifier: Programming Language :: Python :: 3.9
  16. Classifier: Programming Language :: Python :: 3.10
  17. Classifier: Programming Language :: Python :: 3.11
  18. Classifier: Programming Language :: Python :: 3.12
  19. Classifier: Topic :: Utilities
  20. Requires-Python: >=3.8
  21. License-File: LICENSE
  22. Provides-Extra: doc
  23. Requires-Dist: reno ; extra == 'doc'
  24. Requires-Dist: sphinx ; extra == 'doc'
  25. Provides-Extra: test
  26. Requires-Dist: pytest ; extra == 'test'
  27. Requires-Dist: tornado >=4.5 ; extra == 'test'
  28. Requires-Dist: typeguard ; extra == 'test'
  29. Tenacity is a general-purpose retrying library to simplify the task of adding retry behavior to just about anything.