I have written some Python scripts in Eclipse where at some point I have stable releases which should be deployed. For the moment this is very simple and means copying the scripts to some directory. (Soon I will also consider Git)
Could you tell me the common extendable way to set up a process like this in Eclipse? Maybe something more professional which, if a more complicating deployment becomes neccessary, can still be used.
(I had seen Ant somewhere, but I’m not sure if that is more than I need and maybe not the convention for Python in particular).
I would say use Fabric, and read this blog post for a reasonable introduction to it.