METADATA 5.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. Metadata-Version: 2.1
  2. Name: contourpy
  3. Version: 1.2.0
  4. Summary: Python library for calculating contours of 2D quadrilateral grids
  5. Author-Email: Ian Thomas <ianthomas23@gmail.com>
  6. License: BSD 3-Clause License
  7. Copyright (c) 2021-2023, ContourPy Developers.
  8. All rights reserved.
  9. Redistribution and use in source and binary forms, with or without
  10. modification, are permitted provided that the following conditions are met:
  11. 1. Redistributions of source code must retain the above copyright notice, this
  12. list of conditions and the following disclaimer.
  13. 2. Redistributions in binary form must reproduce the above copyright notice,
  14. this list of conditions and the following disclaimer in the documentation
  15. and/or other materials provided with the distribution.
  16. 3. Neither the name of the copyright holder nor the names of its
  17. contributors may be used to endorse or promote products derived from
  18. this software without specific prior written permission.
  19. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  20. AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  21. IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  22. DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
  23. FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  24. DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  25. SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  26. CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  27. OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  28. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  29. Classifier: Development Status :: 5 - Production/Stable
  30. Classifier: Intended Audience :: Developers
  31. Classifier: Intended Audience :: Science/Research
  32. Classifier: License :: OSI Approved :: BSD License
  33. Classifier: Programming Language :: C++
  34. Classifier: Programming Language :: Python :: 3
  35. Classifier: Programming Language :: Python :: 3.9
  36. Classifier: Programming Language :: Python :: 3.10
  37. Classifier: Programming Language :: Python :: 3.11
  38. Classifier: Programming Language :: Python :: 3.12
  39. Classifier: Topic :: Scientific/Engineering :: Information Analysis
  40. Classifier: Topic :: Scientific/Engineering :: Mathematics
  41. Classifier: Topic :: Scientific/Engineering :: Visualization
  42. Project-URL: Homepage, https://github.com/contourpy/contourpy
  43. Project-URL: Changelog, https://contourpy.readthedocs.io/en/latest/changelog.html
  44. Project-URL: Documentation, https://contourpy.readthedocs.io
  45. Project-URL: Repository, https://github.com/contourpy/contourpy
  46. Requires-Python: >=3.9
  47. Requires-Dist: numpy<2.0,>=1.20
  48. Requires-Dist: furo; extra == "docs"
  49. Requires-Dist: sphinx>=7.2; extra == "docs"
  50. Requires-Dist: sphinx-copybutton; extra == "docs"
  51. Requires-Dist: bokeh; extra == "bokeh"
  52. Requires-Dist: selenium; extra == "bokeh"
  53. Requires-Dist: contourpy[bokeh,docs]; extra == "mypy"
  54. Requires-Dist: docutils-stubs; extra == "mypy"
  55. Requires-Dist: mypy==1.6.1; extra == "mypy"
  56. Requires-Dist: types-Pillow; extra == "mypy"
  57. Requires-Dist: contourpy[test-no-images]; extra == "test"
  58. Requires-Dist: matplotlib; extra == "test"
  59. Requires-Dist: Pillow; extra == "test"
  60. Requires-Dist: pytest; extra == "test-no-images"
  61. Requires-Dist: pytest-cov; extra == "test-no-images"
  62. Requires-Dist: pytest-xdist; extra == "test-no-images"
  63. Requires-Dist: wurlitzer; extra == "test-no-images"
  64. Provides-Extra: docs
  65. Provides-Extra: bokeh
  66. Provides-Extra: mypy
  67. Provides-Extra: test
  68. Provides-Extra: test-no-images
  69. Description-Content-Type: text/markdown
  70. <img alt="ContourPy" src="https://raw.githubusercontent.com/contourpy/contourpy/main/docs/_static/contourpy_logo_horiz.svg" height="90">
  71. ContourPy is a Python library for calculating contours of 2D quadrilateral grids. It is written in C++11 and wrapped using pybind11.
  72. It contains the 2005 and 2014 algorithms used in Matplotlib as well as a newer algorithm that includes more features and is available in both serial and multithreaded versions. It provides an easy way for Python libraries to use contouring algorithms without having to include Matplotlib as a dependency.
  73. * **Documentation**: https://contourpy.readthedocs.io
  74. * **Source code**: https://github.com/contourpy/contourpy
  75. | | |
  76. | --- | --- |
  77. | Latest release | [![PyPI version](https://img.shields.io/pypi/v/contourpy.svg?label=pypi&color=fdae61)](https://pypi.python.org/pypi/contourpy) [![conda-forge version](https://img.shields.io/conda/v/conda-forge/contourpy.svg?label=conda-forge&color=a6d96a)](https://anaconda.org/conda-forge/contourpy) [![anaconda version](https://img.shields.io/conda/v/anaconda/contourpy.svg?label=anaconda&color=1a9641)](https://anaconda.org/anaconda/contourpy) |
  78. | Downloads | [![PyPi downloads](https://img.shields.io/pypi/dm/contourpy?label=pypi&style=flat&color=fdae61)](https://pepy.tech/project/contourpy) [![conda-forge downloads](https://raw.githubusercontent.com/contourpy/condabadges/main/cache/contourpy_conda-forge_monthly.svg)](https://anaconda.org/conda-forge/contourpy) [![anaconda downloads](https://raw.githubusercontent.com/contourpy/condabadges/main/cache/contourpy_anaconda_monthly.svg)](https://anaconda.org/anaconda/contourpy) |
  79. | Python version | [![Platforms](https://img.shields.io/pypi/pyversions/contourpy?color=fdae61)](https://pypi.org/project/contourpy/) |
  80. | Coverage | [![Codecov](https://img.shields.io/codecov/c/gh/contourpy/contourpy?color=fdae61&label=codecov)](https://app.codecov.io/gh/contourpy/contourpy) |