Metadata-Version: 1.1
Name: fontawesome
Version: 4.7.0.post4
Summary: The Font Awesome icon set for python
Home-page: https://github.com/justbuchanan/fontawesome-python
Author: Justin Buchanan
Author-email: justbuchanan@gmail.com
License: Code: Apache License, Version 2.0, Icons: SIL OFL 1.1
Description: Font Awesome icons for python
        =============================
        
        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 by modifying the
            # generate.py script.
            ./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/>`__.
        
Platform: UNKNOWN
Classifier: Environment :: Console
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
