I have written a game in python. The whole game is in a single .py file. However, it requires the cryptography package to run. I want to send this game to others. Is there a way to include the cryptography package along with my script so they don't have to install it separately using pip?
EDIT:
The answer to my question was here: How can I make a Python script standalone executable to run without ANY dependency?