Re: Question about python code distribution...

2005-04-28 Thread Stephen Prinster
[EMAIL PROTECTED] wrote: Hi, I am sure that this question might have come up repeatedly. Companies may not want to distribute their python code in source form. Even though pyc files are one option, it gets inconvenient to distribute bunch of them . If there is some way to bundle pyc files

Re: Question about python code distribution...

2005-04-28 Thread Larry Bates
You didn't say what platform, but if it is Windows take a look at Inno Installer. It is a complete installation framework that allows you to package everything into a single setup.exe file. I use a combination of py2exe and Inno to do my apps that are to be distributed. Nothing could be

Question about python code distribution...

2005-04-27 Thread [EMAIL PROTECTED]
Hi, I am sure that this question might have come up repeatedly. Companies may not want to distribute their python code in source form. Even though pyc files are one option, it gets inconvenient to distribute bunch of them . If there is some way to bundle pyc files (akin to .jar), it would be

Re: Question about python code distribution...

2005-04-27 Thread [EMAIL PROTECTED]
[EMAIL PROTECTED] wrote: Hi, I am sure that this question might have come up repeatedly. Companies may not want to distribute their python code in source form. Even though pyc files are one option, it gets inconvenient to distribute bunch of them . If there is some way to bundle pyc files