METADATA 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. Metadata-Version: 2.1
  2. Name: kiwisolver
  3. Version: 1.1.0
  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: Programming Language :: Python
  11. Classifier: Programming Language :: Python :: 2
  12. Classifier: Programming Language :: Python :: 2.7
  13. Classifier: Programming Language :: Python :: 3
  14. Classifier: Programming Language :: Python :: 3.4
  15. Classifier: Programming Language :: Python :: 3.5
  16. Classifier: Programming Language :: Python :: 3.6
  17. Classifier: Programming Language :: Python :: 3.7
  18. Classifier: Programming Language :: Python :: Implementation :: CPython
  19. Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*
  20. Requires-Dist: setuptools
  21. Welcome to Kiwi
  22. ===============
  23. .. image:: https://travis-ci.org/nucleic/kiwi.svg?branch=master
  24. :target: https://travis-ci.org/nucleic/kiwi
  25. .. image:: https://codecov.io/gh/nucleic/kiwi/branch/master/graph/badge.svg
  26. :target: https://codecov.io/gh/nucleic/kiwi
  27. .. image:: https://readthedocs.org/projects/kiwisolver/badge/?version=latest
  28. :target: https://kiwisolver.readthedocs.io/en/latest/?badge=latest
  29. :alt: Documentation Status
  30. Kiwi is an efficient C++ implementation of the Cassowary constraint solving
  31. algorithm. Kiwi is an implementation of the algorithm based on the seminal
  32. Cassowary paper. It is *not* a refactoring of the original C++ solver. Kiwi
  33. has been designed from the ground up to be lightweight and fast. Kiwi ranges
  34. from 10x to 500x faster than the original Cassowary solver with typical use
  35. cases gaining a 40x improvement. Memory savings are consistently > 5x.
  36. In addition to the C++ solver, Kiwi ships with hand-rolled Python bindings.