Metadata-Version: 2.1
Name: installerapp
Version: 0.7
Summary: Python module to build installer
Home-page: https://github.com/novus-alex/InstallerApp
Author: Alex
Author-email: alexandre@hachet.com
License: MIT
Download-URL: https://github.com/novus-alex/InstallerApp/archive/refs/tags/0.2.tar.gz
Description: # InstallerApp python module
        
        InstallerApp is a module to make installers for your softwares.
        ```python
        import installerapp
        ```
        
        Simple example
        ```python
        from installerapp.app import InstallerApp
        
        # Initialization of the installer
        YourInstallerApp = InstallerApp("YourFileURLToDownload")
        
        # Run the installer
        YourInstallerApp.run()
        ```
        
        Here's some pictures of the installer.
        
        ![image](https://user-images.githubusercontent.com/69415374/119158062-19ef5080-ba56-11eb-82b0-ae06c84878f9.png)
        
        ![image](https://user-images.githubusercontent.com/69415374/119157940-fa582800-ba55-11eb-9147-7374062f6c59.png)
        
        ![image](https://user-images.githubusercontent.com/69415374/119157986-05ab5380-ba56-11eb-8e25-6c754244c739.png)
        
        ![image](https://user-images.githubusercontent.com/69415374/119158036-122fac00-ba56-11eb-89db-f46a7a8525a8.png)
        
        
        
Keywords: INSTALLER
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Description-Content-Type: text/markdown
