Metadata-Version: 2.4
Name: pyinno_setup
Version: 0.0.1
Summary: module for creating installable exe from iss file using innosetup compiler
Author-email: keralaboy <keralaboypypi@keralaboy.anonaddy.com>
License-Expression: MIT
Project-URL: Homepage, https://github.com/its-me-abi/pyinno_setup
Keywords: compiler,inno setup,exe,installer,generate
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file


## 🚀 pyinno_setup
[![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0)
[![Python](https://img.shields.io/badge/Python-3.6%2B-blue.svg)](https://www.python.org/)
[![Issues](https://img.shields.io/github/issues/its-me-abi/pyinno_setup.svg)](https://github.com/its-me-abi/pyinno_setup/issues)

it is an python wrapper for programmatically building installable exe from iss script using embedded innosetup binary.  


### ✨ Features

- **Automate Installer Creation:** Generate Windows installers (`.exe`) from Python without comandline or gui,
- **Seamless Inno Setup Integration:** Harness the full power of Inno Setup, embedded and ready to use.

### 📦 Installation

```from source:
git clone https://github.com/its-me-abi/pyinno_setup.git

```

### 🛠️ Quick Start

```python
from pyinno_setup import inno

if inno.build("inputfolder/template.iss", "outfolder"):
    print("### successfully built")
else:
    print("### build failed ")
```

### 💡 Why pyinno_setup?

- **No more manual ` cli or gui .**
- no need to install and configure innosetup yourself,everything is avaialble in this package
---

### 🖥️ Requirements

- Python 3.6+
- [Inno Setup](https://jrsoftware.org/isinfo.php) (embedded or available in your environment)
- Windows OS needed because innosetup only works in windows and it is for windows

---

### 🤝 Contributing

1. Fork this repo
2. Create a feature branch (`git checkout -b awesome-feature`)
3. Commit your changes
4. Open a Pull Request

---

### 📄 License

MIT License. See [LICENSE](LICENSE).

---

### 🙏 Acknowledgements

- [Inno Setup](https://jrsoftware.org/isinfo.php) by Jordan Russell

---

### 🌐 Links

- [wiki](https://github.com/its-me-abi/pyinno_setup/wiki)
- [Inno Setup Documentation](https://jrsoftware.org/ishelp/index.php)
