aboutsummaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/setup.py b/setup.py
index 6e0d25b..0abbd52 100644
--- a/setup.py
+++ b/setup.py
@@ -282,6 +282,26 @@ Uses the CTF PvP Engine.
rel.approved = True
db.session.add(rel)
+
+ mod = Package()
+ mod.approved = True
+ mod.name = "pixelbox"
+ mod.title = "PixelBOX Reloaded"
+ mod.license = licenses["CC0"]
+ mod.type = PackageType.TXP
+ mod.author = ruben
+ mod.forums = 14132
+ mod.shortDesc = "This is an update of the original PixelBOX texture pack by the brillant artist Gambit"
+ mod.desc = "This is the long desc"
+ db.session.add(mod)
+
+ rel = PackageRelease()
+ rel.package = mod
+ rel.title = "v1.0.0"
+ rel.url = "http://mamadou3.free.fr/Minetest/PixelBOX.zip"
+ rel.approved = True
+ db.session.add(rel)
+
db.session.commit()
else:
print("Database already exists")