METADATA 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. Metadata-Version: 2.4
  2. Name: tenacity
  3. Version: 9.1.2
  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.9
  15. Classifier: Programming Language :: Python :: 3.10
  16. Classifier: Programming Language :: Python :: 3.11
  17. Classifier: Programming Language :: Python :: 3.12
  18. Classifier: Programming Language :: Python :: 3.13
  19. Classifier: Topic :: Utilities
  20. Requires-Python: >=3.9
  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. Dynamic: license-file
  30. Tenacity is a general-purpose retrying library to simplify the task of adding retry behavior to just about anything.