forked from BlockResearchGroup/compas_model
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtasks.py
33 lines (30 loc) · 742 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
from __future__ import print_function
import os
from compas_invocations2 import build
from compas_invocations2 import docs
from compas_invocations2 import style
from compas_invocations2 import tests
from invoke import Collection
ns = Collection(
docs.help,
style.check,
style.lint,
style.format,
docs.docs,
docs.linkcheck,
tests.test,
tests.testdocs,
build.build_ghuser_components,
build.prepare_changelog,
build.clean,
build.release,
)
ns.configure(
{
"base_folder": os.path.dirname(__file__),
"ghuser": {
"source_dir": "src/compas_notebook/ghpython/components",
"target_dir": "src/compas_notebook/ghpython/components/ghuser",
},
}
)