A Python toolkit for creating Windows application installers
Project description
Copyright (c) 2026 Amatak Holdings Pty Ltd.
winapp
This project is an automated AI utility suite. This README is auto-generated based on the project structure.
Project Structure
winapp/
├── .gitignore
├── .pypirc
├── Anna
│ ├── LICENSE
│ ├── README.md
│ ├── VERSION.txt
│ ├── __init__.py
│ ├── assets
│ │ ├── brand
│ │ │ ├── brand.ico
│ │ │ ├── brand.png
│ │ │ ├── brand_installer.bmp
│ │ │ └── license_agreement.pdf
│ │ └── icons
│ ├── config.json
│ ├── gui
│ │ └── __init__.py
│ ├── installer
│ │ ├── Amatak_Anna_Setup_v1.0.0.exe
│ │ └── win_installer.nsi
│ ├── main.py
│ ├── requirements.txt
│ ├── src
│ │ └── __init__.py
│ └── tests
│ └── __init__.py
├── LICENSE
├── MANIFEST.in
├── README.md
├── VERSION.txt
├── amatak-winapp.bat
├── amatak-winapp.pyw
├── amatak_winapp
│ ├── __init__.py
│ ├── assets
│ │ └── brand
│ │ ├── brand.ico
│ │ ├── brand.png
│ │ ├── brand_installer.bmp
│ │ └── license_agreement.pdf
│ ├── data
│ │ ├── VERSION.txt
│ │ └── __init__.py
│ ├── gui
│ │ ├── __init__.py
│ │ └── winapp_gui.py
│ ├── installer
│ │ └── win_installer.nsi
│ ├── scripts
│ │ ├── __init__.py
│ │ ├── _init_scanner.py
│ │ ├── gen_readme.py
│ │ ├── gen_win.py
│ │ └── winapp_init.py
│ ├── this_init.py
│ └── winapp.py
├── amatak_winapp.egg-info
│ ├── PKG-INFO
│ ├── SOURCES.txt
│ ├── __init__.py
│ ├── dependency_links.txt
│ ├── entry_points.txt
│ ├── requires.txt
│ └── top_level.txt
├── assets
│ └── brand
│ ├── brand.ico
│ ├── brand.png
│ ├── brand_installer.bmp
│ └── license_agreement.pdf
├── buuuu
│ ├── LICENSE
│ ├── README.md
│ ├── VERSION.txt
│ ├── __init__.py
│ ├── assets
│ │ ├── brand
│ │ │ ├── brand.ico
│ │ │ ├── brand.png
│ │ │ ├── brand_installer.bmp
│ │ │ └── license_agreement.pdf
│ │ └── icons
│ ├── config.json
│ ├── gui
│ │ └── __init__.py
│ ├── installer
│ │ ├── Amatak_buuuu_Setup_v1.0.0.exe
│ │ └── win_installer.nsi
│ ├── main.py
│ ├── requirements.txt
│ ├── src
│ │ └── __init__.py
│ └── tests
│ └── __init__.py
├── cleanup_editable.py
├── dist
│ ├── __init__.py
│ ├── amatak_winapp-1.0.5-py3-none-any.whl
│ └── amatak_winapp-1.0.5.tar.gz
├── fdsfdsfdsf
│ ├── LICENSE
│ ├── README.md
│ ├── VERSION.txt
│ ├── __init__.py
│ ├── assets
│ │ ├── brand
│ │ │ ├── brand.ico
│ │ │ ├── brand.png
│ │ │ ├── brand_installer.bmp
│ │ │ └── license_agreement.pdf
│ │ └── icons
│ ├── config.json
│ ├── gui
│ │ └── __init__.py
│ ├── installer
│ │ ├── Amatak_fdsfdsfdsf_Setup_v1.0.0.exe
│ │ └── win_installer.nsi
│ ├── main.py
│ ├── requirements.txt
│ ├── src
│ │ └── __init__.py
│ └── tests
│ └── __init__.py
├── file.py
├── gen_nsi_main.py
├── gen_win_main.py
├── installer
│ ├── Amatak_WinApp_Generator_Setup_v1.0.2.exe
│ ├── Amatak_WinApp_Generator_Setup_v1.0.4.exe
│ └── win_installer.nsi
├── main.py
├── publish.py
├── requirements.txt
├── run_winapp.py
├── sample-app
│ ├── README.md
│ ├── VERSION.txt
│ ├── __init__.py
│ ├── assets
│ │ ├── brand
│ │ │ ├── brand.ico
│ │ │ ├── brand.png
│ │ │ └── brand_installer.bmp
│ │ └── icons
│ ├── config.json
│ ├── docs
│ │ └── __init__.py
│ ├── gui
│ │ └── __init__.py
│ ├── installer
│ │ └── win_installer.nsi
│ ├── main.py
│ ├── requirements.txt
│ ├── src
│ │ └── __init__.py
│ └── tests
│ └── __init__.py
├── setup.py
├── suhotest
│ ├── README.md
│ ├── VERSION.txt
│ ├── __init__.py
│ ├── assets
│ │ ├── brand
│ │ └── icons
│ ├── config.json
│ ├── gui
│ │ └── __init__.py
│ ├── installer
│ ├── main.py
│ ├── requirements.txt
│ ├── src
│ │ └── __init__.py
│ └── tests
│ └── __init__.py
├── sync_version.py
├── winapp.bat
└── youandme
├── LICENSE
├── README.md
├── VERSION.txt
├── __init__.py
├── assets
│ ├── brand
│ │ ├── brand.ico
│ │ ├── brand.png
│ │ ├── brand_installer.bmp
│ │ └── license_agreement.pdf
│ └── icons
├── config.json
├── gui
│ └── __init__.py
├── installer
│ ├── Amatak_youandme_Setup_v1.0.0.exe
│ └── win_installer.nsi
├── main.py
├── requirements.txt
├── src
│ └── __init__.py
└── tests
└── __init__.py
Documentation & Modules
Setup
pip install -r requirements.txt
python main.py
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
amatak_winapp-1.0.6.tar.gz
(100.4 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
amatak_winapp-1.0.6-py3-none-any.whl
(103.6 kB
view details)
File details
Details for the file amatak_winapp-1.0.6.tar.gz.
File metadata
- Download URL: amatak_winapp-1.0.6.tar.gz
- Upload date:
- Size: 100.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7fe18b40cbd5df540e55005766faa03c65cdd3a688c77c8808c40065acb81f9e
|
|
| MD5 |
85f575707b9ddc11bd57e0f58bac6f90
|
|
| BLAKE2b-256 |
11962c96ccb1acc35eec631c71c40c7649f1cc12f38e771183a03f2c8701ea83
|
File details
Details for the file amatak_winapp-1.0.6-py3-none-any.whl.
File metadata
- Download URL: amatak_winapp-1.0.6-py3-none-any.whl
- Upload date:
- Size: 103.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d062a2db158180b0a84a33154a6a63ae6639356e7a7166eabb580c1bd4c35121
|
|
| MD5 |
98068b3ae41ace88958803b9b64906dc
|
|
| BLAKE2b-256 |
d56280cda9215d58783342b435ffa43e2dfd6065be22dbe2faa92d8c0383d0bf
|