Metadata-Version: 2.4
Name: fonticon-materialdesignicons7
Version: 7.2.96
Summary: Material Design Icons 7 extension for superqt font icons
Project-URL: homepage, https://github.com/pyapp-kit/fonticon-materialdesignicons7
Project-URL: repository, https://github.com/pyapp-kit/fonticon-materialdesignicons7
Author-email: Talley Lambert <talley.lambert@gmail.com>
License: MIT
License-File: LICENSE
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Python: >=3.7
Provides-Extra: dev
Requires-Dist: black; extra == 'dev'
Requires-Dist: ipython; extra == 'dev'
Requires-Dist: mypy; extra == 'dev'
Requires-Dist: pdbpp; extra == 'dev'
Requires-Dist: rich; extra == 'dev'
Requires-Dist: ruff; extra == 'dev'
Provides-Extra: test
Requires-Dist: pytest; extra == 'test'
Requires-Dist: pytest-cov; extra == 'test'
Requires-Dist: pytest-qt; extra == 'test'
Requires-Dist: superqt; extra == 'test'
Description-Content-Type: text/markdown

# fonticon-materialdesignicons7

[![License](https://img.shields.io/pypi/l/fonticon-materialdesignicons7.svg?color=green)](https://github.com/pyapp-kit/fonticon-materialdesignicons7/raw/main/LICENSE)
[![PyPI](https://img.shields.io/pypi/v/fonticon-materialdesignicons7.svg?color=green)](https://pypi.org/project/fonticon-materialdesignicons7)
[![Python Version](https://img.shields.io/pypi/pyversions/fonticon-materialdesignicons7.svg?color=green)](https://python.org)

[Material Design Icons 7](https://github.com/Templarian/MaterialDesign-Webfont) extension for [superqt font icons](https://pyapp-kit.github.io/superqt/utilities/fonticon/)

<https://github.com/templarian/MaterialDesign>

```sh
pip install superqt fonticon-materialdesignicons7
```

```python
from fonticon_mdi7 import MDI7
from qtpy.QtCore import QSize
from qtpy.QtWidgets import QApplication, QPushButton
from superqt.fonticon import icon, pulse

app = QApplication([])

btn2 = QPushButton()
btn2.setIcon(icon(MDI7.fan, animation=pulse(btn2)))
btn2.setIconSize(QSize(225, 225))
btn2.show()

app.exec_()
```

### Dev note

To update this package for new fonticon releases, update the `VERSION = ...` string
in `scripts/bundle.py`, and rerun `python scripts/bundle.py`.
