Metadata-Version: 2.1
Name: QuickGraphLib
Version: 0.1.0a0
Summary: A scientific graphing library for QtQuick
Author-email: Matthew Joyce <matthew.joyce@refeyn.com>
License: MIT License
        
        Copyright (c) 2024 Matthew Joyce and other QuickGraphLib contributors
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
Project-URL: Homepage, https://github.com/refeyn/QuickGraphLib
Project-URL: Issues, https://github.com/refeyn/QuickGraphLib/issues
Project-URL: Source, https://github.com/refeyn/QuickGraphLib
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: X11 Applications :: Qt
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Multimedia :: Graphics :: Presentation
Classifier: Topic :: Scientific/Engineering :: Visualization
Classifier: Topic :: Software Development :: User Interfaces
Classifier: Typing :: Typed
Description-Content-Type: text/markdown
License-File: LICENCE
Requires-Dist: PySide6
Requires-Dist: contourpy
Provides-Extra: analyse
Requires-Dist: black; extra == "analyse"
Requires-Dist: pylint; extra == "analyse"
Requires-Dist: mypy; extra == "analyse"
Requires-Dist: pre-commit; extra == "analyse"
Requires-Dist: lxml; extra == "analyse"
Requires-Dist: pytest; extra == "analyse"
Requires-Dist: pytest-cov; extra == "analyse"

# QuickGraphLib

A scientific graphing library for [QtQuick](https://doc.qt.io/qt-6/qtquick-index.html) using Qt6.

Key advantages:

 - Written in pure QML (with some optional Python helpers), so it can be used in both C++ and Python projects
 - QtQuick's hardware-based rendering makes this library render very fast
 - Support for line graphs, histograms, contour plots and more
 - Interactivity supported natively though declarative bindings and QtQuick
 - Support for PNG and SVG export

## Examples

The example gallery can be run using (provided the Python environment has [PySide6](https://pypi.org/project/PySide6/) and [contourpy](https://pypi.org/project/contourpy/) installed):

```bash
python examples\gallery.py
```

<p align="center"><img src="./examples/ExampleGallery.png" width="80%"></p>
