diff options
author | rubenwardy <rw@rubenwardy.com> | 2018-04-08 18:27:27 +0100 |
---|---|---|
committer | rubenwardy <rw@rubenwardy.com> | 2018-04-08 18:27:27 +0100 |
commit | a6ccb75ffdbc5aa38742d89d0fb4dada01b15442 (patch) | |
tree | 4557ec6fe26fc82a647827d15db0f2347891fa3e /setup.py | |
parent | ed88c61714ba62ad591d8dcbc635231f0fc0daa7 (diff) | |
download | cheatdb-a6ccb75ffdbc5aa38742d89d0fb4dada01b15442.tar.xz |
Add more packages to setup.py
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 60 |
1 files changed, 60 insertions, 0 deletions
@@ -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 |