Metadata-Version: 2.4
Name: exebuilder
Version: 0.3.0
Summary: A simple EXE builder for Python files.
Author: Victor Zou
Project-URL: Homepage, https://github.com/qzou1222-alt/exebuilder
Project-URL: Issues, https://github.com/qzou1222-alt/exebuilder/issues
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: pyinstaller

# exebuilder

Simple EXE builder for Python files.

## Install

```bash
pip install exebuilder
```

---

## Usage

### Build EXE

```python
from exebuilder import build

build("main.py")
```

creates:

```text
dist/main.exe
```

---

### Run as EXE

```python
from exebuilder import runasexe

runasexe("main.py")
```

Runs the Python file as a temporary EXE.

---

## CLI

```bash
exebuilder my_file.py
```

or

```bash
python exebuilder.py my_file.py
```

creates:

```text
dist/main.exe
```

---

## Example

```python
from exebuilder import build, runasexe

build("game.py")

runasexe("tool.py")
```
