Metadata-Version: 2.4
Name: amatak-winapp
Version: 1.0.4
Summary: A Python toolkit for creating Windows application installers
Home-page: https://github.com/amatak-org/amatak_winapp
Author: Amatak Development Team
Author-email: amatak.io@outlook.com
Project-URL: Bug Reports, https://github.com/amatak-org/amatak_winapp/issues
Project-URL: Source, https://github.com/amatak-org/amatak_winapp
Keywords: windows,installer,nsis,pyinstaller,packaging
Classifier: Development Status :: 4 - Beta
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.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX :: Linux
Classifier: Operating System :: MacOS
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: PyQt6
Requires-Dist: markdown
Requires-Dist: requests
Requires-Dist: numpy
Requires-Dist: aiohttp
Requires-Dist: watchdog
Requires-Dist: pillow
Requires-Dist: fpdf
Requires-Dist: scikit-learn
Requires-Dist: beautifulsoup4
Requires-Dist: pandas
Requires-Dist: black
Requires-Dist: flake8
Requires-Dist: pytest
Requires-Dist: pyinstaller
Requires-Dist: python-magic
Requires-Dist: winshell
Requires-Dist: pywin32
Requires-Dist: reportlab
Requires-Dist: psutil
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: keywords
Dynamic: license-file
Dynamic: project-url
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

Copyright (c) 2025 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
├── 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
│   ├── scripts
│   │   ├── __init__.py
│   │   ├── _init_scanner.py
│   │   ├── gen_readme.py
│   │   ├── gen_win.py
│   │   └── winapp_init.py
│   └── winapp.py
├── build
│   ├── bdist.win-amd64
│   └── lib
│       ├── amatak_winapp
│       │   ├── __init__.py
│       │   ├── data
│       │   │   ├── VERSION.txt
│       │   │   └── __init__.py
│       │   ├── gui
│       │   │   ├── __init__.py
│       │   │   └── winapp_gui.py
│       │   ├── main.py
│       │   ├── scripts
│       │   │   ├── __init__.py
│       │   │   ├── _init_scanner.py
│       │   │   ├── gen_readme.py
│       │   │   ├── gen_win.py
│       │   │   └── winapp_init.py
│       │   └── winapp.py
│       └── dist
│           └── __init__.py
├── dist
│   └── __init__.py
├── installer
│   └── win_installer.nsi
├── main.py
├── publish.py
├── pyproject.toml
├── requirements.txt
├── run_winapp.py
├── sample-app
│   ├── README.md
│   ├── assets
│   │   ├── brand
│   │   └── icons
│   ├── config.json
│   ├── docs
│   ├── gui
│   ├── main.py
│   ├── requirements.txt
│   ├── src
│   └── tests
├── setup.py
└── winapp.bat
```
## Documentation & Modules
## Setup
```bash
pip install -r requirements.txt
python main.py
```
