From a6ccb75ffdbc5aa38742d89d0fb4dada01b15442 Mon Sep 17 00:00:00 2001 From: rubenwardy Date: Sun, 8 Apr 2018 18:27:27 +0100 Subject: [PATCH] Add more packages to setup.py --- setup.py | 60 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) diff --git a/setup.py b/setup.py index 520cd34b..f159245a 100644 --- a/setup.py +++ b/setup.py @@ -184,6 +184,66 @@ No warranty is provided, express or implied, for any part of the project. db.session.add(mod1) db.session.add(mod2) + mod = Package() + mod.approved = True + mod.name = "handholds" + mod.title = "Mountain Climbing" + mod.license = licenses["MIT"] + mod.type = PackageType.MOD + mod.author = ez + mod.tags.append(tags["player_effects"]) + mod.repo = "https://github.com/ezhh/handholds" + mod.issueTracker = "https://github.com/ezhh/handholds/issues" + mod.forums = 17069 + mod.shortDesc = "Adds hand holds and climbing thingies" + mod.desc = "This is the long desc" + db.session.add(mod) + + mod = Package() + mod.approved = True + mod.name = "other_worlds" + mod.title = "Other Worlds" + mod.license = licenses["MIT"] + mod.type = PackageType.MOD + mod.author = ez + mod.tags.append(tags["mapgen"]) + mod.tags.append(tags["environment"]) + mod.repo = "https://github.com/ezhh/other_worlds" + mod.issueTracker = "https://github.com/ezhh/other_worlds/issues" + mod.forums = 16015 + mod.shortDesc = "Adds space with asteroids and comets" + mod.desc = "This is the long desc" + db.session.add(mod) + + mod = Package() + mod.approved = True + mod.name = "food" + mod.title = "Food" + mod.license = licenses["LGPLv2.1"] + mod.type = PackageType.MOD + mod.author = ruben + mod.tags.append(tags["player_effects"]) + mod.repo = "https://github.com/rubenwardy/food/" + mod.issueTracker = "https://github.com/rubenwardy/food/issues/" + mod.forums = 2960 + mod.shortDesc = "Adds lots of food and an API to manage ingredients" + mod.desc = "This is the long desc" + db.session.add(mod) + + mod = Package() + mod.approved = True + mod.name = "food_sweet" + mod.title = "Sweet Foods" + mod.license = licenses["CC0"] + mod.type = PackageType.MOD + mod.author = ruben + mod.tags.append(tags["player_effects"]) + mod.repo = "https://github.com/rubenwardy/food_sweet/" + mod.issueTracker = "https://github.com/rubenwardy/food_sweet/issues/" + mod.forums = 9039 + mod.shortDesc = "Adds sweet food" + mod.desc = "This is the long desc" + db.session.add(mod) game1 = Package() game1.approved = True