Metadata-Version: 2.1
Name: auto-py-to-exe
Version: 1.3.0
Summary: Converts .py to .exe using a simple graphical interface.
Home-page: https://github.com/brentvollebregt/auto-py-to-exe
Author: Brent Vollebregt
Author-email: brent@nitratine.net
License: MIT
Description: <h1 align="center">Auto PY to EXE</h1>
        <p align="center">A .py to .exe converter using a simple graphical interface built using <a href="https://github.com/ChrisKnott/Eel">Eel</a> and <a href="http://www.pyinstaller.org/">pyinstaller</a> in Python.</p>
        
        <p align="center">
            <img src="https://i.imgur.com/EuUlayC.png" alt="Empty interface">
        </p>
        
        <p align="center">This is the PyPI package of <a href="https://github.com/brentvollebregt/auto-py-to-exe">auto-py-to-exe</a></p>
        
        <p align="center">
            <img src="https://img.shields.io/pypi/v/auto-py-to-exe.svg" alt="PyPI Version">
            <img src="https://img.shields.io/pypi/pyversions/auto-py-to-exe.svg" alt="PyPI Supported Versions">
            <img src="https://img.shields.io/pypi/l/auto-py-to-exe.svg" alt="License">
        </p>
        
        ## Installation
        
        ### Prerequisites
         - Python : Python 2.7, 3.3 - 3.6
         - Chrome : to run the user interface in; eel uses this (app mode)
        
        ### Via [PyPI](https://pypi.org/project/auto-py-to-exe/)
        ```
        $ pip install auto-py-to-exe
        ```
        
        ### Via [GitHub](https://github.com/brentvollebregt/auto-py-to-exe-pypi)
        ```
        $ git clone https://github.com/brentvollebregt/auto-py-to-exe-pypi.git
        $ cd auto-py-to-exe-pypi
        $ ./setup.py install
        ```
        
        ## Usage
        Simply run the application by calling it in the terminal:
        ```
        $ auto-py-to-exe
        ```
        
        You can also pass a file as an argument to pre-fill the script location field:
        ```
        $ auto-py-to-exe my_script.py
        ```
        
        ### Using the GUI
        1. Select your script location (paste in or use a file explorer)
            - Outline will become blue when file exists
        2. Select other options and add things like an icon or other files
        3. Click the big blue button at the bottom to convert
        4. Find your converted files in /output when completed
        
        ## Issues
        Please report any issues to [auto-py-to-exe](https://github.com/brentvollebregt/auto-py-to-exe) as this package mimics the original repo with some additions to make it available on PyPI.
        
        If there are issues with the changes made to the original repo, they can be reported on [auto-py-to-exe-pypi's GitHub page](https://github.com/brentvollebregt/auto-py-to-exe-pypi).
        
        ## Video
        If you need something visual to help you get started, [I made a video for the original release of this project](https://youtu.be/OZSZHmWSOeM?t=1m30s), some things may be different but the same concepts still apply.
        
        ## Screenshots
        ![Empty interface](https://i.imgur.com/dd0LC2n.png)
        
        ![Filled out](https://i.imgur.com/f3TEnZI.png)
        
        ![Converting](https://i.imgur.com/MjdONcC.png)
Keywords: gui,executable
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX :: Linux
Requires-Python: >=2.7,!=3.7.*
Description-Content-Type: text/markdown
