Metadata-Version: 2.1
Name: contourpy
Version: 0.0.3
Summary: Calculating contours of 2D quadrilateral grids from Python
Home-page: https://github.com/contourpy/contourpy
Author: Ian Thomas
Author-email: ianthomas23@gmail.com
License: BSD-3-Clause
Platform: any
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: C
Classifier: Programming Language :: C++
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Scientific/Engineering :: Information Analysis
Classifier: Topic :: Scientific/Engineering :: Mathematics
Classifier: Topic :: Scientific/Engineering :: Visualization
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy (>=1.16)
Provides-Extra: docs
Requires-Dist: sphinx (==4.0.1) ; extra == 'docs'
Requires-Dist: sphinx-rtd-theme ; extra == 'docs'
Provides-Extra: examples
Requires-Dist: bokeh ; extra == 'examples'
Requires-Dist: selenium ; extra == 'examples'
Provides-Extra: test
Requires-Dist: flake8 ; extra == 'test'
Requires-Dist: matplotlib ; extra == 'test'
Requires-Dist: Pillow ; extra == 'test'
Requires-Dist: pytest ; extra == 'test'

<img alt="ContourPy" src="/docs/_static/contourpy_logo_horiz.svg" height="90">

Python library for calculating contours of 2D quadrilateral grids.

Work in progress...

Will include current and previous Matplotlib contouring algorithms, plus a new
faster and more flexible one.  Intention is to allow Python libraries to use
contouring algorithms without having to have Matplotlib as a dependency.

To build and install using a new virtual environment

    python3 -m venv ~/venv
    . ~/venv/bin/activate
    pip install -v .

To build and install in developer's mode

    pip install -ve .

To build in debug mode, which enables `assert`s in C++ code

    CONTOURPY_DEBUG=1 pip install -ve .

To run tests

    pip install -ve .[test]
    pytest

To build docs

    pip install -ve .[docs]
    cd docs
    make html


