How to compile all resources into one executable file?

I am in the process to deploy my python program to a production environment, where it will be treated as an app.

In order to bunch up all the relative resources, i had used the following set of commands, in the defined sequence.

python Configuration.py
python Specification.py --onefile --windowed --upx /path/to/Program.py
python Build.py /path/to/Program.spec

But it is a bit difficult to execute all different commands each time, in case of minor changes or updates.

It is any other simpler way, similiar to some Deployment tool, or Build option such as in Visual Studio, to perform this task in one go ?