aboutsummaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorrubenwardy <rw@rubenwardy.com>2018-03-20 02:17:33 +0000
committerrubenwardy <rw@rubenwardy.com>2018-03-20 02:17:33 +0000
commitd3484d96e17138a9b8d86a85d387bb6c0f7135f0 (patch)
treec08665e71dc3eb4cb38654e3e627c22b1d0b8d09 /setup.py
parentd17535fc781ff134f9800f19174154836ed89bdc (diff)
downloadcheatdb-d3484d96e17138a9b8d86a85d387bb6c0f7135f0.tar.xz
Add more details to package page
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py17
1 files changed, 16 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index a606c4f..fdc6221 100644
--- a/setup.py
+++ b/setup.py
@@ -21,7 +21,22 @@ if not os.path.isfile("db.sqlite"):
mod1.title = "Awards"
mod1.type = PackageType.MOD
mod1.author = ruben
- mod1.description = "Adds achievements and an API to register new ones."
+ mod1.shortDesc = "Adds achievements and an API to register new ones."
+ mod1.desc = """
+ Majority of awards are back ported from Calinou's old fork in Carbone, under same license.
+
+```
+awards.register_achievement("award_mesefind",{
+ title = "First Mese Find",
+ description = "Found some Mese!",
+ trigger = {
+ type = "dig", -- award is given when
+ node = "default:mese", -- this type of node has been dug
+ target = 1, -- this number of times
+ },
+})
+```
+ """
mod1.repo = "https://github.com/rubenwardy/awards"
mod1.issueTracker = "https://github.com/rubenwardy/awards/issues"
mod1.forums = "https://forum.minetest.net/viewtopic.php?t=4870"