METADATA 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. Metadata-Version: 2.1
  2. Name: kiwisolver
  3. Version: 1.3.1
  4. Summary: A fast implementation of the Cassowary constraint solver
  5. Home-page: https://github.com/nucleic/kiwi
  6. Author: The Nucleic Development Team
  7. Author-email: sccolbert@gmail.com
  8. License: BSD
  9. Platform: UNKNOWN
  10. Classifier: License :: OSI Approved :: BSD License
  11. Classifier: Programming Language :: Python
  12. Classifier: Programming Language :: Python :: 3
  13. Classifier: Programming Language :: Python :: 3.6
  14. Classifier: Programming Language :: Python :: 3.7
  15. Classifier: Programming Language :: Python :: 3.8
  16. Classifier: Programming Language :: Python :: 3.9
  17. Classifier: Programming Language :: Python :: Implementation :: CPython
  18. Requires-Python: >=3.6
  19. Welcome to Kiwi
  20. ===============
  21. .. image:: https://travis-ci.org/nucleic/kiwi.svg?branch=master
  22. :target: https://travis-ci.org/nucleic/kiwi
  23. .. image:: https://github.com/nucleic/kiwi/workflows/Continuous%20Integration/badge.svg
  24. :target: https://github.com/nucleic/kiwi/actions
  25. .. image:: https://github.com/nucleic/kiwi/workflows/Documentation%20building/badge.svg
  26. :target: https://github.com/nucleic/kiwi/actions
  27. .. image:: https://codecov.io/gh/nucleic/kiwi/branch/master/graph/badge.svg
  28. :target: https://codecov.io/gh/nucleic/kiwi
  29. .. image:: https://readthedocs.org/projects/kiwisolver/badge/?version=latest
  30. :target: https://kiwisolver.readthedocs.io/en/latest/?badge=latest
  31. :alt: Documentation Status
  32. Kiwi is an efficient C++ implementation of the Cassowary constraint solving
  33. algorithm. Kiwi is an implementation of the algorithm based on the seminal
  34. Cassowary paper. It is *not* a refactoring of the original C++ solver. Kiwi
  35. has been designed from the ground up to be lightweight and fast. Kiwi ranges
  36. from 10x to 500x faster than the original Cassowary solver with typical use
  37. cases gaining a 40x improvement. Memory savings are consistently > 5x.
  38. In addition to the C++ solver, Kiwi ships with hand-rolled Python bindings for
  39. Python 3.6+.