25 lines
596 B
Text
25 lines
596 B
Text
project = "Callisto"
|
|
title = "Callisto library documentation"
|
|
description = "standalone scripting platform for Lua 5.4"
|
|
full_description = [[
|
|
Callisto is a scripting interpreter for Lua 5.4 which
|
|
includes many useful libraries relating to file system
|
|
manipulation, processes and signals, command-line
|
|
argument parsing, environment variables and more.
|
|
It is designed to make Lua into a general purpose
|
|
standalone scripting language, which anyone can use.
|
|
]]
|
|
dir = "doc"
|
|
format = "markdown"
|
|
|
|
file = {
|
|
".",
|
|
exclude = {
|
|
"external",
|
|
"result"
|
|
}
|
|
}
|
|
|
|
new_type("setting", "Settings")
|
|
|
|
-- vi: ft=lua
|