On Sat, May 14, 2011 at 7:39 PM, Boštjan Mejak <[email protected]>wrote:
> Say I create an app in Python and wxPython (a Python GUI framework). And > then I upload my installation binaries (binaries created with py2exe and > setup made with Inno Setup) to, say, Google Code. I don't want to dislose my > source code. I just want my users to download the setup program and use my > program at their will. What license would you give in such a case? And also, > where would you put the license? Would you, in this particular case, even > give a license? If you don't want to disclose source code, you don't want to use an open source license. You do still need to take care to comply with the licenses of any code you use however, so be sure you don't use any GPL'ed code or libraries in your app. You may want to use some proprietary license, but as I have no interest in proprietary software, I have no advice for you there. I suggest you talk to a lawyer, getting legal advice from a mailing list of volunteers is not a great idea. Also, note that your source code will still be visible even if packaged with py2exe, unless you use some form of obfuscation. -- Bjarni R. Einarsson The Beanstalks Project ehf. Making personal web-pages fly: http://pagekite.net/ -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.

