Best open source license for those wanting attribution? - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T10:35:52Zhttp://stackoverflow.com/feeds/question/713045http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/713045/best-open-source-license-for-those-wanting-attribution2Best open source license for those wanting attribution?a2h2009-04-03T08:35:51Z2009-04-03T09:29:21Z
<p>Yeah, I'm not too happy with the GPL having nothing preventing others from taking your work and claiming it as theirs.</p>
<p>I've been looking at the MIT and CPAL licenses. Any suggestions?</p>
<p>Oh and, I need the license to be compatible with MIT.</p>
http://stackoverflow.com/questions/713045/best-open-source-license-for-those-wanting-attribution/713076#7130764Answer by Neil Butterworth for Best open source license for those wanting attribution?Neil Butterworth2009-04-03T08:46:24Z2009-04-03T08:57:41Z<p>How about the <a href="http://www.apache.org/licenses/LICENSE-2.0.html" rel="nofollow">Apache 2.0 license</a>:</p>
<blockquote>
<p>You must retain, in the Source form of
any Derivative Works that You
distribute, all copyright, patent,
trademark, and attribution notices
from the Source form of the Work,
excluding those notices that do not
pertain to any part of the Derivative
Works; and</p>
</blockquote>
<p>But I think you are worrying too much. Most users of FOSS code will happily retain attributions, license or no, and do you really have the financial resources to pursue those few who don't?</p>
http://stackoverflow.com/questions/713045/best-open-source-license-for-those-wanting-attribution/713113#7131131Answer by Chris Lutz for Best open source license for those wanting attribution?Chris Lutz2009-04-03T08:55:54Z2009-04-03T08:55:54Z<p>I recommend all software be licensed under the <a href="http://genaud.net/2005/10/poetic-license/" rel="nofollow">Poetic License</a>:</p>
<blockquote>
<p>(c) <year> <name><br />
This work ‘as-is’ we provide.<br />
No warranty express or implied.<br />
We’ve done our best,<br />
to debug and test.<br />
Liability for damages denied.</p>
<p>Permission is granted hereby,<br />
to copy, share, and modify.<br />
Use as is fit,<br />
free or for profit.<br />
These rights, on this notice, rely.</p>
</blockquote>
<p>It is essentially the MIT license as a limerick. However, I'm not sure if this is exactly what you want. As a joke answer, I community wiki-ed it so people wouldn't think I was rep-whoring.</p>
<p>But I, personally, will be using the Poetic license on as much software as I can justify to myself.</p>
http://stackoverflow.com/questions/713045/best-open-source-license-for-those-wanting-attribution/713209#7132091Answer by Evan for Best open source license for those wanting attribution?Evan2009-04-03T09:29:21Z2009-04-03T09:29:21Z<p>The <a href="http://en.wikipedia.org/wiki/BSD%5Flicenses" rel="nofollow">BSD license</a> has an attribution clause in it:</p>
<blockquote>
<p>Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.</p>
</blockquote>
<p>I like the BSD license because it's short, straight forward, and easy to comprehend.</p>
<p>I would compare it with the <a href="http://www.apache.org/licenses/LICENSE-2.0.html" rel="nofollow">Apache 2.0 License</a> that Neil <a href="http://stackoverflow.com/questions/713045/best-open-source-license-for-those-wanting-attribution/713076#713076">suggested</a> and see which one better meets your needs.</p>