| 1 | = !SahanaPy License = |
| 2 | |
| 3 | !SahanaPy is published under the [http://en.wikipedia.org/wiki/MIT_License MIT License]. |
| 4 | |
| 5 | Example header for source files (please use docstrings, not comments): |
| 6 | {{{ |
| 7 | """ |
| 8 | XY Module |
| 9 | |
| 10 | @author: <authorname> |
| 11 | @copyright: 2010 (c) Sahana Software Foundation |
| 12 | |
| 13 | @license: MIT |
| 14 | |
| 15 | Permission is hereby granted, free of charge, to any person |
| 16 | obtaining a copy of this software and associated documentation |
| 17 | files (the "Software"), to deal in the Software without |
| 18 | restriction, including without limitation the rights to use, |
| 19 | copy, modify, merge, publish, distribute, sublicense, and/or sell |
| 20 | copies of the Software, and to permit persons to whom the |
| 21 | Software is furnished to do so, subject to the following |
| 22 | conditions: |
| 23 | |
| 24 | The above copyright notice and this permission notice shall be |
| 25 | included in all copies or substantial portions of the Software. |
| 26 | |
| 27 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, |
| 28 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES |
| 29 | OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
| 30 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT |
| 31 | HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, |
| 32 | WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING |
| 33 | FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR |
| 34 | OTHER DEALINGS IN THE SOFTWARE. |
| 35 | """ |
| 36 | }}} |
| 37 | |