Metadata-Version: 2.1
Name: contourpy
Version: 0.0.1
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 License
Description: <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
        
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
Provides-Extra: docs
Provides-Extra: examples
Provides-Extra: test
