Metadata-Version: 2.4
Name: fonticon-fontawesome6
Version: 6.4.0
Summary: FontAwesome 6 extension for superqt font icons
Project-URL: homepage, https://github.com/pyapp-kit/fonticon-fontawesome6
Project-URL: repository, https://github.com/pyapp-kit/fonticon-fontawesome6
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-fontawesome6

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

[FontAwesome 6](https://github.com/FortAwesome/Font-Awesome) extension for [superqt font icons](https://pyapp-kit.github.io/superqt/utilities/fonticon/)

```sh
pip install superqt fonticon-fontawesome6
```

```python

from fonticon_fa6 import FA6S
from qtpy.QtCore import QSize
from qtpy.QtWidgets import QApplication, QPushButton
from superqt.fonticon import icon, pulse

app = QApplication([])

btn2 = QPushButton()
btn2.setIcon(icon(FA6S.spinner, 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`.
