123456789101112131415161718192021222324252627282930313233343536373839404142 |
- Metadata-Version: 2.1
- Name: kiwisolver
- Version: 1.1.0
- Summary: A fast implementation of the Cassowary constraint solver
- Home-page: https://github.com/nucleic/kiwi
- Author: The Nucleic Development Team
- Author-email: sccolbert@gmail.com
- License: BSD
- Platform: UNKNOWN
- Classifier: Programming Language :: Python
- Classifier: Programming Language :: Python :: 2
- Classifier: Programming Language :: Python :: 2.7
- Classifier: Programming Language :: Python :: 3
- Classifier: Programming Language :: Python :: 3.4
- Classifier: Programming Language :: Python :: 3.5
- Classifier: Programming Language :: Python :: 3.6
- Classifier: Programming Language :: Python :: 3.7
- Classifier: Programming Language :: Python :: Implementation :: CPython
- Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*
- Requires-Dist: setuptools
- Welcome to Kiwi
- ===============
- .. image:: https://travis-ci.org/nucleic/kiwi.svg?branch=master
- :target: https://travis-ci.org/nucleic/kiwi
- .. image:: https://codecov.io/gh/nucleic/kiwi/branch/master/graph/badge.svg
- :target: https://codecov.io/gh/nucleic/kiwi
- .. image:: https://readthedocs.org/projects/kiwisolver/badge/?version=latest
- :target: https://kiwisolver.readthedocs.io/en/latest/?badge=latest
- :alt: Documentation Status
- Kiwi is an efficient C++ implementation of the Cassowary constraint solving
- algorithm. Kiwi is an implementation of the algorithm based on the seminal
- Cassowary paper. It is *not* a refactoring of the original C++ solver. Kiwi
- has been designed from the ground up to be lightweight and fast. Kiwi ranges
- from 10x to 500x faster than the original Cassowary solver with typical use
- cases gaining a 40x improvement. Memory savings are consistently > 5x.
- In addition to the C++ solver, Kiwi ships with hand-rolled Python bindings.
|