|
1 #!/usr/bin/python2.5 |
|
2 # |
|
3 # Copyright 2008 the Melange authors. |
|
4 # |
|
5 # Licensed under the Apache License, Version 2.0 (the "License"); |
|
6 # you may not use this file except in compliance with the License. |
|
7 # You may obtain a copy of the License at |
|
8 # |
|
9 # http://www.apache.org/licenses/LICENSE-2.0 |
|
10 # |
|
11 # Unless required by applicable law or agreed to in writing, software |
|
12 # distributed under the License is distributed on an "AS IS" BASIS, |
|
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
14 # See the License for the specific language governing permissions and |
|
15 # limitations under the License. |
|
16 |
|
17 """Set of licenses that have been approved by the OSI. |
|
18 """ |
|
19 |
|
20 __authors__ = [ |
|
21 '"Sverre Rabbelier" <sverre@rabbelier.nl>', |
|
22 ] |
|
23 |
|
24 |
|
25 LICENSES = ( |
|
26 'Academic Free License 3.0 (AFL 3.0)', |
|
27 'Affero GNU Public License', |
|
28 'Adaptive Public License', |
|
29 'Apache License, 2.0', |
|
30 'Apple Public Source License', |
|
31 'Artistic license 2.0', |
|
32 'Attribution Assurance Licenses', |
|
33 'New and Simplified BSD licenses', |
|
34 'Boost Software License (BSL1.0)', |
|
35 'Computer Associates Trusted Open Source License 1.1', |
|
36 'Common Development and Distribution License', |
|
37 'Common Public Attribution License 1.0 (CPAL)', |
|
38 'Common Public License 1.0', |
|
39 'CUA Office Public License Version 1.0', |
|
40 'EU DataGrid Software License', |
|
41 'Eclipse Public License', |
|
42 'Educational Community License, Version 2.0', |
|
43 'Eiffel Forum License V2.0', |
|
44 'Entessa Public License', |
|
45 'Fair License', |
|
46 'Frameworx License', |
|
47 'GNU General Public License (GPL)', |
|
48 'GNU General Public License version 3.0 (GPLv3)', |
|
49 'GNU Library or "Lesser" General Public License (LGPL)', |
|
50 'GNU Library or "Lesser" General Public License version 3.0 (LGPLv3)', |
|
51 'Historical Permission Notice and Disclaimer', |
|
52 'IBM Public License', |
|
53 'ISC License', |
|
54 'Lucent Public License Version 1.02', |
|
55 'Microsoft Public License (Ms-PL)', |
|
56 'Microsoft Reciprocal License (Ms-RL)', |
|
57 'MIT license', |
|
58 'Motosoto License', |
|
59 'Mozilla Public License 1.1 (MPL)', |
|
60 'Multics License', |
|
61 'NASA Open Source Agreement 1.3', |
|
62 'NTP License', |
|
63 'Naumen Public License', |
|
64 'Nethack General Public License', |
|
65 'Nokia Open Source License', |
|
66 'Non-Profit Open Software License 3.0 (Non-Profit OSL 3.0)', |
|
67 'OCLC Research Public License 2.0', |
|
68 'Open Group Test Suite License', |
|
69 'Open Software License 3.0 (OSL 3.0)', |
|
70 'PHP License', |
|
71 'Python license', |
|
72 'Python Software Foundation License', |
|
73 'Qt Public License (QPL)', |
|
74 'RealNetworks Public Source License V1.0', |
|
75 'Reciprocal Public License 1.5 (RPL1.5)', |
|
76 'Ricoh Source Code Public License', |
|
77 'Simple Public License 2.0', |
|
78 'Sleepycat License', |
|
79 'Sun Public License', |
|
80 'Sybase Open Watcom Public License 1.0', |
|
81 'University of Illinois/NCSA Open Source License', |
|
82 'Vovida Software License v. 1.0', |
|
83 'W3C License', |
|
84 'wxWindows Library License', |
|
85 'X.Net License', |
|
86 'Zope Public License', |
|
87 'zlib/libpng license', |
|
88 ) |