-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathSConstruct
30 lines (28 loc) · 1.33 KB
/
SConstruct
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
from templatekit.builder import file_template_builder
SConscript(
[
"project_templates/stack_package/SConscript",
"project_templates/nbreport/SConscript",
"project_templates/technote_rst/SConscript",
"project_templates/technote_md/SConscript",
"project_templates/technote_latex/SConscript",
"project_templates/technote_aastex/SConscript",
"project_templates/technote_adasstex/SConscript",
"project_templates/technote_spietex/SConscript",
"project_templates/technote_ascomtex/SConscript",
"project_templates/test_report/SConscript",
"project_templates/latex_lsstdoc/SConscript",
"project_templates/fastapi_safir_app/SConscript",
"project_templates/square_pypi_package/SConscript",
"project_templates/sitcom_personal_notebooks/SConscript",
"file_templates/copyright/SConscript",
"file_templates/license_gplv3/SConscript",
"file_templates/stack_license_preamble_txt/SConscript",
"file_templates/stack_license_preamble_py/SConscript",
"file_templates/stack_license_preamble_cpp/SConscript",
"file_templates/task_topic/SConscript",
"file_templates/config_topic/SConscript",
"file_templates/script_topic/SConscript",
"file_templates/argparse_script_topic/SConscript",
]
)