aboutsummaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorrubenwardy <rw@rubenwardy.com>2018-07-28 17:26:28 +0100
committerrubenwardy <rw@rubenwardy.com>2018-07-28 17:26:28 +0100
commit514a24e2c41686e91df25970b2b624d767c94c18 (patch)
tree65ce40f5653d7e518f4dbb697b6891d8023cfdd2 /setup.py
parent742a327cbbcd0f8cd19de337e51780f8478acbb1 (diff)
downloadcheatdb-514a24e2c41686e91df25970b2b624d767c94c18.tar.xz
Add license editor
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index e106aa2..df57698 100644
--- a/setup.py
+++ b/setup.py
@@ -362,12 +362,12 @@ for tag in ["Inventory", "Mapgen", "Building", \
licenses = {}
for license in ["GPLv2.1", "GPLv3", "LGPLv2.1", "LGPLv3", "AGPLv2.1", "AGPLv3",
"Apache", "BSD 3-Clause", "BSD 2-Clause", "CC0", "CC-BY-SA",
- "CC-BY", "MIT", "ZLib"]:
+ "CC-BY", "MIT", "ZLib", "Other (Free)"]:
row = License(license)
licenses[row.name] = row
db.session.add(row)
-for license in ["CC-BY-NC-SA"]:
+for license in ["CC-BY-NC-SA", "Other (Non-free)"]:
row = License(license, False)
licenses[row.name] = row
db.session.add(row)