METADATA 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. Metadata-Version: 2.1
  2. Name: kiwisolver
  3. Version: 1.4.5
  4. Summary: A fast implementation of the Cassowary constraint solver
  5. Author-email: The Nucleic Development Team <sccolbert@gmail.com>
  6. Maintainer-email: "Matthieu C. Dartiailh" <m.dartiailh@gmail.com>
  7. License: =========================
  8. The Kiwi licensing terms
  9. =========================
  10. Kiwi is licensed under the terms of the Modified BSD License (also known as
  11. New or Revised BSD), as follows:
  12. Copyright (c) 2013, Nucleic Development Team
  13. All rights reserved.
  14. Redistribution and use in source and binary forms, with or without
  15. modification, are permitted provided that the following conditions are met:
  16. Redistributions of source code must retain the above copyright notice, this
  17. list of conditions and the following disclaimer.
  18. Redistributions in binary form must reproduce the above copyright notice, this
  19. list of conditions and the following disclaimer in the documentation and/or
  20. other materials provided with the distribution.
  21. Neither the name of the Nucleic Development Team nor the names of its
  22. contributors may be used to endorse or promote products derived from this
  23. software without specific prior written permission.
  24. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
  25. ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  26. WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  27. DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
  28. FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  29. DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  30. SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  31. CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  32. OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  33. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  34. About Kiwi
  35. ----------
  36. Chris Colbert began the Kiwi project in December 2013 in an effort to
  37. create a blisteringly fast UI constraint solver. Chris is still the
  38. project lead.
  39. The Nucleic Development Team is the set of all contributors to the Nucleic
  40. project and its subprojects.
  41. The core team that coordinates development on GitHub can be found here:
  42. http://github.com/nucleic. The current team consists of:
  43. * Chris Colbert
  44. Our Copyright Policy
  45. --------------------
  46. Nucleic uses a shared copyright model. Each contributor maintains copyright
  47. over their contributions to Nucleic. But, it is important to note that these
  48. contributions are typically only changes to the repositories. Thus, the Nucleic
  49. source code, in its entirety is not the copyright of any single person or
  50. institution. Instead, it is the collective copyright of the entire Nucleic
  51. Development Team. If individual contributors want to maintain a record of what
  52. changes/contributions they have specific copyright on, they should indicate
  53. their copyright in the commit message of the change, when they commit the
  54. change to one of the Nucleic repositories.
  55. With this in mind, the following banner should be used in any source code file
  56. to indicate the copyright and license terms:
  57. #------------------------------------------------------------------------------
  58. # Copyright (c) 2013, Nucleic Development Team.
  59. #
  60. # Distributed under the terms of the Modified BSD License.
  61. #
  62. # The full license is in the file LICENSE, distributed with this software.
  63. #------------------------------------------------------------------------------
  64. Project-URL: homepage, https://github.com/nucleic/kiwi
  65. Project-URL: documentation, https://kiwisolver.readthedocs.io/en/latest/
  66. Project-URL: repository, https://github.com/nucleic/kiwi
  67. Project-URL: changelog, https://github.com/nucleic/kiwi/blob/main/releasenotes.rst
  68. Classifier: License :: OSI Approved :: BSD License
  69. Classifier: Programming Language :: Python
  70. Classifier: Programming Language :: Python :: 3
  71. Classifier: Programming Language :: Python :: 3.7
  72. Classifier: Programming Language :: Python :: 3.8
  73. Classifier: Programming Language :: Python :: 3.9
  74. Classifier: Programming Language :: Python :: 3.10
  75. Classifier: Programming Language :: Python :: 3.11
  76. Classifier: Programming Language :: Python :: Implementation :: CPython
  77. Classifier: Programming Language :: Python :: Implementation :: PyPy
  78. Requires-Python: >=3.7
  79. Description-Content-Type: text/x-rst
  80. License-File: LICENSE
  81. Requires-Dist: typing-extensions ; python_version < "3.8"
  82. Welcome to Kiwi
  83. ===============
  84. .. image:: https://travis-ci.org/nucleic/kiwi.svg?branch=main
  85. :target: https://travis-ci.org/nucleic/kiwi
  86. .. image:: https://github.com/nucleic/kiwi/workflows/Continuous%20Integration/badge.svg
  87. :target: https://github.com/nucleic/kiwi/actions
  88. .. image:: https://github.com/nucleic/kiwi/workflows/Documentation%20building/badge.svg
  89. :target: https://github.com/nucleic/kiwi/actions
  90. .. image:: https://codecov.io/gh/nucleic/kiwi/branch/main/graph/badge.svg
  91. :target: https://codecov.io/gh/nucleic/kiwi
  92. .. image:: https://readthedocs.org/projects/kiwisolver/badge/?version=latest
  93. :target: https://kiwisolver.readthedocs.io/en/latest/?badge=latest
  94. :alt: Documentation Status
  95. Kiwi is an efficient C++ implementation of the Cassowary constraint solving
  96. algorithm. Kiwi is an implementation of the algorithm based on the
  97. `seminal Cassowary paper <https://constraints.cs.washington.edu/solvers/cassowary-tochi.pdf>`_.
  98. It is *not* a refactoring of the original C++ solver. Kiwi has been designed
  99. from the ground up to be lightweight and fast. Kiwi ranges from 10x to 500x
  100. faster than the original Cassowary solver with typical use cases gaining a 40x
  101. improvement. Memory savings are consistently > 5x.
  102. In addition to the C++ solver, Kiwi ships with hand-rolled Python bindings for
  103. Python 3.7+.