Metadata-Version: 1.2
Name: fontawesome
Version: 5.7.2.post1
Summary: The Font Awesome icon set for python
Home-page: https://github.com/justbuchanan/fontawesome-python
Author: Justin Buchanan
Author-email: justbuchanan@gmail.com
Maintainer: Justin Buchanan
Maintainer-email: justbuchanan@gmail.com
License: Code: Apache License, Version 2.0, Icons: SIL OFL 1.1
Description: Font Awesome icons for python |PyPI version|
        ============================================
        
        Installation 
        --------------
        
        .. code:: sh
        
           pip install fontawesome
        
        Usage 
        -------
        
        .. code:: py
        
           import fontawesome as fa
        
           print(fa.icons['thumbs-up'])
           >>> 
        
        Build 
        -------
        
        .. code:: sh
        
           # Run the generate script to download font awesome's character mapping
           # and generate a python-formatted version of it.  Save this file as icons.py
           # in the fontawesome subdirectory.  Note that this pulls the latest revision
           # on the master branch.  You can easily change this  with the --revision flag.
           ./fontawesome/generate.py > ./fontawesome/icons.py
        
           python setup.py build
        
           python setup.py install
        
        License
        -------
        
        The code in this repository is licensed under `Apache
        2.0 <https://www.apache.org/licenses/LICENSE-2.0>`__
        
        The character codes included with this package are part of the `Font
        Awesome project <http://fontawesome.io/>`__.
        
        .. |PyPI version| image:: https://badge.fury.io/py/fontawesome.svg
           :target: https://badge.fury.io/py/fontawesome
        
Platform: UNKNOWN
Classifier: Environment :: Console
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
