OLD | NEW |
| (Empty) |
1 # Copyright (c) 2001-2006 Twisted Matrix Laboratories. | |
2 # See LICENSE for details. | |
3 | |
4 | |
5 | |
6 """ | |
7 Copyright information for Twisted. | |
8 """ | |
9 | |
10 from twisted import __version__ as version, version as longversion | |
11 | |
12 longversion = str(longversion) | |
13 | |
14 copyright="""\ | |
15 Copyright (c) 2001-2006 Twisted Matrix Laboratories. | |
16 See LICENSE for details.""" | |
17 | |
18 disclaimer=''' | |
19 Twisted, the Framework of Your Internet | |
20 %s | |
21 | |
22 Permission is hereby granted, free of charge, to any person obtaining | |
23 a copy of this software and associated documentation files (the | |
24 "Software"), to deal in the Software without restriction, including | |
25 without limitation the rights to use, copy, modify, merge, publish, | |
26 distribute, sublicense, and/or sell copies of the Software, and to | |
27 permit persons to whom the Software is furnished to do so, subject to | |
28 the following conditions: | |
29 | |
30 The above copyright notice and this permission notice shall be | |
31 included in all copies or substantial portions of the Software. | |
32 | |
33 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, | |
34 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF | |
35 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND | |
36 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE | |
37 LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION | |
38 OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION | |
39 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | |
40 | |
41 ''' % copyright | |
OLD | NEW |