Metadata-Version: 2.1
Name: manim-fontawesome
Version: 6.2.1
Summary: Font Awesome SVG's for Manim
Home-page: https://github.com/naveen521kk/manim-fontawesome
License: BSD-3-Clause
Author: Naveen M K
Author-email: naveen@manim.community
Requires-Python: >=3.7,<4.0
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: BSD 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
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Multimedia :: Graphics
Classifier: Topic :: Multimedia :: Video
Classifier: Topic :: Scientific/Engineering
Requires-Dist: manim (>=0.3,<=1.0)
Project-URL: Repository, https://github.com/naveen521kk/manim-fontawesome
Description-Content-Type: text/markdown

# manim-fontawesome

Font Awesome SVG's for Manim.

## How to Use.

You can import this as any python library in your script and then use `brand`, `regular`, `solid` varaibles to get the necessary `SVGMobjects`.

For example,

```py
from manim import *
from manim_fontawesome import *

class AngryEmoji(Scene):
    def construct(self):
        # import https://fontawesome.com/v5.15/icons/angry?style=regular
        self.add(regular.angry)
```

This module defined these variables:
- `regular`: These contains the Regular Style icons.
- `solid`: These contains the Solid style icons.
- `brand`: These contains the Brands.

# License

This module is licensed under BSD-3-Clause.

