I'm in serious need of some guidance on how to properly deploy a desktop python application (generate a trusted executable and installer).
First of all, I'm a mech. engineer. Not a full-stack programmer, although circumstances have made me delve deep into all sorts of programming for several years now. But I still lack some project insights that might be trivial for some professional programmers.
I've built a project for the company I work at using Tkinter, all in VS Code. The app is fully functional and runs great. Has git versioning, unit tests, dynamic screen sizing, and a login/licensing system (that part I had the help of a third-party company that made the login backend on .NET, I just call/send requests in the main python program to communicate with the server). I even have a beautiful landing page ready to be in production on the company's website.
However, I'm sort of stuck now. I can generate an executable using pyinstaller, create an installer with Inno Setup and even pack it into a .msi with MSI Wrapper. Which is what I did. But I run into window's trust issues and eventual virus warnings, even though there's no malicious code in it.
That's certainly not the proper way of doing a serious company app deployment intended for mass distribution and selling licenses. I think that might have something to do with using Visual Studio Enterprise, azure devops, maybe having a code signing certificate, an app manifest .xml, etc. That's the sort of thing that I have no experience with whatsoever and find myself lost now.
I'd like to know which steps I'd have to take now to properly deploy this app (i.e. have a trusted windows executable and installer, in the company's name). How would you proceed with this?
Extra info: The app is fully written in python, with several open source libraries such as matplotlib, numpy, PIL, etc. And all the GUI was made with tkinter. Aside from that, it only needs images/icons from a folder to assemble the GUI elements and a .ttf font to write some specific text.