Metadata-Version: 2.4
Name: amatak-winapp
Version: 1.0.2
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.

# Amatak WinApp

A comprehensive Python toolkit for creating professional Windows application installers.

## Installation

```bash
pip install amatak-winapp
# Create a new Windows application project
winapp create MyApp

# Navigate to project
cd MyApp

# Initialize with branding and documentation
winapp init

# Build the installer
To start your Project please install Win Project customizer to complet your entire project.
```

## Project Tree
```
winapp/
├── .pypirc
├── LICENSE
├── MANIFEST.in
├── README.md
├── VERSION.txt
├── _init_scanner.py
├── amatak-winapp.bat
├── amatak-winapp.pyw
├── amatak_winapp
│   ├── __init__.py
│   ├── _init_scanner.py
│   ├── data
│   │   ├── VERSION.txt
│   │   └── __init__.py
│   ├── gui
│   │   ├── __init__.py
│   │   └── winapp_gui.py
│   ├── scripts
│   │   ├── __init__.py
│   │   ├── _init_scanner.py
│   │   ├── gen_readme.py
│   │   └── gen_win.py
│   └── winapp.py
├── amatak_winapp.egg-info
│   ├── PKG-INFO
│   ├── SOURCES.txt
│   ├── __init__.py
│   ├── dependency_links.txt
│   ├── entry_points.txt
│   └── top_level.txt
├── assets
│   └── brand
│       ├── brand.ico
│       ├── brand.png
│       └── brand_installer.bmp
├── bin
│   ├── __init__.py
│   └── amatak
│       └── __init__.py
├── dist
│   ├── __init__.py
│   ├── amatak_winapp-1.0.1-py3-none-any.whl
│   └── amatak_winapp-1.0.1.tar.gz
├── installer
│   └── win_installer.nsi
├── main.py
├── publish.py
├── pyproject.toml
├── requirements.txt
├── run_winapp.py
├── setup.py
└── winapp.bat
```

