a | b/.gitignore | ||
---|---|---|---|
1 | # project files |
||
2 | **/.idea |
||
3 | **/.vscode |
||
4 | |||
5 | # cache files |
||
6 | **/__pycache__ |
||
7 | **/.pytest_cache |
||
8 | *.pyc |
||
9 | |||
10 | # build files |
||
11 | *.egg-info |
||
12 | |||
13 | # weights files |
||
14 | **/weights |
||
15 | |||
16 | # data |
||
17 | **/dicoms |
||
18 | **/unittest-data |
||
19 | **/.dosma |
||
20 | |||
21 | # test data files |
||
22 | **/temp |
||
23 | **/ex_patient |
||
24 | |||
25 | # ignore local files |
||
26 | libANNlib.dylib |
||
27 | debug_runs.py |
||
28 | |||
29 | # ignore ismrm |
||
30 | **/ismrm_2019_scripts |
||
31 | |||
32 | # ignore runtime generated package scripts |
||
33 | **/._* |
||
34 | |||
35 | # pyscripts |
||
36 | **/py_scripts |
||
37 | |||
38 | # playgrounds |
||
39 | /gui/gui_playground.py |
||
40 | |||
41 | # build files |
||
42 | build/ |
||
43 | **/dist |
||
44 | *.spec |
||
45 | |||
46 | # Generated docs |
||
47 | docs/source/generated |
||
48 | |||
49 | # ignore preferences file |
||
50 | **/preferences.* |
||
51 | |||
52 | # ignore all resources |
||
53 | **/resources |
||
54 | |||
55 | # coverage files |
||
56 | .coverage |
||
57 | coverage.xml |