There are example to build executable using one py file(module) as given here I have about 4 py files(modules), I would like to build executable which should include all the py files.
How to build python executable when we have more then one python modules ?
Example from here
from cx_Freeze import setup, Executable
setup(
name = "hello",
version = "0.1",
description = "the typical 'Hello, world!' script",
executables = [Executable("hello.py")])
This has hello.py if I have two files like hello1.py and hello2.py ?
Thanks