After much agonizing, apply open-source licenses to the other files.
Cat's Eye Technologies
8 years ago
32 | 32 | |
33 | 33 | ----------------------------------------------------------------------------- |
34 | 34 | |
35 | All other files in this distribution, including the generated novels (in | |
36 | the `doc` directory) and The Swallows world and characters (in the | |
37 | `src/swallows/story` directory), have no explicit licensing terms yet. | |
38 | They will probably one day be released as open-source. But that day is | |
39 | not yoday. I'd like some time to mull it over. | |
35 | The generated novels (in the `doc` directory) are released under the | |
36 | Creative Commons Attribution 3.0 Unported license ("CC BY 3.0"): | |
37 | ||
38 | http://creativecommons.org/licenses/by/3.0/ | |
39 | ||
40 | The Swallows world and characters (in the `src/swallows/story` directory) | |
41 | are released under an MIT-style license; see those files for the license | |
42 | text. |
0 | # Copyright (c)2013 Chris Pressey, Cat's Eye Technologies | |
1 | # | |
2 | # Permission is hereby granted, free of charge, to any person obtaining a | |
3 | # copy of this software and associated documentation files (the "Software"), | |
4 | # to deal in the Software without restriction, including without limitation | |
5 | # the rights to use, copy, modify, merge, publish, distribute, sublicense, | |
6 | # and/or sell copies of the Software, and to permit persons to whom the | |
7 | # Software is furnished to do so, subject to the following conditions: | |
8 | # | |
9 | # The above copyright notice and this permission notice shall be included in | |
10 | # all copies or substantial portions of the Software. | |
11 | # | |
12 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | |
13 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | |
14 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | |
15 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | |
16 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING | |
17 | # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | |
18 | # DEALINGS IN THE SOFTWARE. | |
19 | ||
0 | 20 | import random |
1 | 21 | import sys |
2 | 22 |
0 | #!/usr/bin/env python | |
0 | # Copyright (c)2013 Chris Pressey, Cat's Eye Technologies | |
1 | # | |
2 | # Permission is hereby granted, free of charge, to any person obtaining a | |
3 | # copy of this software and associated documentation files (the "Software"), | |
4 | # to deal in the Software without restriction, including without limitation | |
5 | # the rights to use, copy, modify, merge, publish, distribute, sublicense, | |
6 | # and/or sell copies of the Software, and to permit persons to whom the | |
7 | # Software is furnished to do so, subject to the following conditions: | |
8 | # | |
9 | # The above copyright notice and this permission notice shall be included in | |
10 | # all copies or substantial portions of the Software. | |
11 | # | |
12 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | |
13 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | |
14 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | |
15 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | |
16 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING | |
17 | # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | |
18 | # DEALINGS IN THE SOFTWARE. | |
1 | 19 | |
2 | 20 | import random |
3 | 21 |