- Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathSnakefile
More file actions
Latest commit
29 lines (25 loc) · 425 Bytes
/
Copy pathSnakefile
File metadata and controls
29 lines (25 loc) · 425 Bytes
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
# lua-objects
try:
ifnotgSTARTED: print( gSTARTED )
except:
MODULE="lua-objects"
include: "../DMC-Lua-Library/snakemake/Snakefile"
module_config= {
"name": "lua-objects",
"module": {
"dir": "dmc_lua",
"files": [
"lua_objects.lua"
],
"requires": [
"lua-events-mixin",
"lua-class"
]
},
"tests": {
"dir": "spec",
"files": [],
"requires": []
}
}
register( "lua-objects", module_config )