forked from gramaziokohler/compas_timber
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tasks.py
35 lines (32 loc) · 790 Bytes
/
tasks.py
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
from __future__ import print_function
import os
from compas_invocations import build
from compas_invocations import docs
from compas_invocations import style
from compas_invocations import tests
from invoke import Collection
ns = Collection(
docs.help,
style.check,
style.lint,
style.format,
docs.docs,
docs.linkcheck,
tests.test,
tests.testdocs,
tests.testcodeblocks,
build.prepare_changelog,
build.clean,
build.release,
build.build_ghuser_components,
)
ns.configure(
{
"base_folder": os.path.dirname(__file__),
"ghuser": {
"source_dir": "src/compas_timber/ghpython/components",
"target_dir": "src/compas_timber/ghpython/components/ghuser",
"prefix": "CT: ",
},
}
)