I have python (3.0) code base for backend.
I want to deploy this code as bundle on other machine so that it does not require to install dependencies.
Note 1: on my remote machine i have python installed not an issue.
Note 2: This app is not containerized (docker)
Note 3: After bundling it i have to run program on command line with some input argument to the program
(Like for Node Js based app we use Webpack and it just bundles all the js and dependencies into one JS file which can be run from any machine without having node_modules.)
I see some are there like 'python-webpack' but they are unmaintained.