Metadata-Version: 2.1
Name: icoextract
Version: 0.1.0
Summary: Windows PE EXE icon extractor
Home-page: https://github.com/jlu5/icoextract
Author: James Lu
Author-email: james@overdrivenetworks.com
License: MIT/Expat
Description: # icoextract
        
        icoextract is an icon extractor for Windows PE files (.exe/.dll), written in Python. It also includes a thumbnailer script (exe-thumbnailer) for Linux desktops.
        
        This project is inspired by [extract-icon-py](https://github.com/firodj/extract-icon-py), [icoutils](https://www.nongnu.org/icoutils/), and others.
        
        ## Installation
        
        Global install:
        
        ```
        pip3 install -r requirements.txt
        python3 setup.py install
        mkdir -p /usr/local/share/thumbnailers/
        cp exe-thumbnailer.thumbnailer /usr/local/share/thumbnailers/
        ```
        
        Local install:
        
        ```
        pip3 install -r requirements.txt
        python3 setup.py install --user
        mkdir -p ~/.local/share/thumbnailers/
        cp exe-thumbnailer.thumbnailer ~/.local/share/thumbnailers/
        ```
        
        ## Goals
        
        This project aims to be:
        
        - Lightweight
        - Portable (cross-platform)
        - Fast on large files
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: End Users/Desktop
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Description-Content-Type: text/markdown
