This repository has been archived by the owner on Dec 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 51
/
xlsxwriter-0.0.6-1.rockspec
52 lines (48 loc) · 1.73 KB
/
xlsxwriter-0.0.6-1.rockspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
package = "xlsxwriter"
version = "0.0.6-1"
source = {
url = "git://github.com/jmcnamara/xlsxwriter.lua.git",
tag = "v0.0.6"
}
description = {
summary = "A lua module for creating Excel XLSX files.",
detailed = [[
XlsxWriter
Xlsxwriter is a Lua module that can be used to write text, numbers,
formulas and hyperlinks to multiple worksheets in an Excel 2007+ XLSX file.
It supports features such as:
* 100% compatible Excel XLSX files.
* Full formatting.
* Memory optimisation mode for writing large files.
* Merged cells.
* Worksheet setup methods.
* Defined names.
* Document properties.
It works with Lua 5.1 and Lua 5.2.
]],
homepage = "http://xlsxwriterlua.readthedocs.org/",
license = "MIT/X11"
}
dependencies = {
"lua >= 5.1",
"zipwriter",
}
build = {
type = "builtin",
modules = {
["xlsxwriter.app"] = "xlsxwriter/app.lua",
["xlsxwriter.contenttypes"] = "xlsxwriter/contenttypes.lua",
["xlsxwriter.core"] = "xlsxwriter/core.lua",
["xlsxwriter.format"] = "xlsxwriter/format.lua",
["xlsxwriter.packager"] = "xlsxwriter/packager.lua",
["xlsxwriter.relationships"] = "xlsxwriter/relationships.lua",
["xlsxwriter.sharedstrings"] = "xlsxwriter/sharedstrings.lua",
["xlsxwriter.strict"] = "xlsxwriter/strict.lua",
["xlsxwriter.styles"] = "xlsxwriter/styles.lua",
["xlsxwriter.theme"] = "xlsxwriter/theme.lua",
["xlsxwriter.utility"] = "xlsxwriter/utility.lua",
["xlsxwriter.workbook"] = "xlsxwriter/workbook.lua",
["xlsxwriter.worksheet"] = "xlsxwriter/worksheet.lua",
["xlsxwriter.xmlwriter"] = "xlsxwriter/xmlwriter.lua",
}
}