project
☄︎
Create project module for scilaunch
.
Functions:
Name | Description |
---|---|
check_booleans_in_cookiecutterrc |
Check the validity of the |
create |
Create the research project structure based on the |
create_cookiecutterrc |
Create the |
is_git_repo_up_to_date |
Check whether the local git repository at the given path is up to date. |
check_booleans_in_cookiecutterrc
☄︎
check_booleans_in_cookiecutterrc()
Check the validity of the .cookiecutterrc
file.
Source code in src/scilaunch/project.py
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 |
|
create
☄︎
create(out_dir, create_cc_rc=True, verbose=False, **kwargs)
Create the research project structure based on the research-project
template.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
out_dir
|
str | pathlib.Path
|
Path to the output directory. |
required |
create_cc_rc
|
bool
|
Whether to create the |
True
|
verbose
|
bool
|
Whether to print verbose output. |
False
|
kwargs
|
dict
|
Keyword arguments passed to |
{}
|
Source code in src/scilaunch/project.py
169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 |
|
create_cookiecutterrc
☄︎
create_cookiecutterrc(verbose=False, **kwargs)
Create the .cookiecutterrc
file.
The .cookiecutterrc
file is stored in the home directory "~
"
and contains default values for the research-project
template.
Fore more information on the .cookiecutterrc
file check out the cookiecutter
documentation.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
verbose
|
bool
|
Whether to print verbose output. |
False
|
kwargs
|
dict
|
Keyword arguments passed to |
{}
|
Source code in src/scilaunch/project.py
93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 |
|
is_git_repo_up_to_date
☄︎
is_git_repo_up_to_date(path)
Check whether the local git repository at the given path is up to date.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
path
|
str | pathlib.Path
|
Path to the local git repository. |
required |
Returns:
Type | Description |
---|---|
bool
|
True if the local git repository is up to date, False otherwise. |
Source code in src/scilaunch/project.py
148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 |
|