I have a Python project with various Python modules. Now, when I need to set the project to another server (Linux OS), I have also set up each module, which are important to the project.
My question is: how can I package (or archivate) module dependencies and projects set to another server with just unpackage (or unzip) and etc.?
UPDATE: Finally I use cx_Freeze, which work fine for my project. But guys gave really useful advice.
Python has a nice way to deal with projects and dependencies: Virtual Environments.
An interesting article: