-
Notifications
You must be signed in to change notification settings - Fork 116
/
.gitignore
62 lines (58 loc) · 1.98 KB
/
.gitignore
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# Local files
.DS_Store
.ipynb_checkpoints
.python-version
.vscode
**/__pycache__
module*/*.pyc
# Poetry
poetry.lock
# Autogenerated
index.md
_config.yml
_toc.yml
# Documentation outputs
_build/
# Notebook outputs
module02_intermediate_python/mydata.txt
module02_intermediate_python/mywrittenfile
module03_research_data_in_python/boids_1.mp4
module04_version_control_with_git/learning_git/
module04_version_control_with_git/somefile.md
module04_version_control_with_git/test.md
module05_testing_your_code/DiffusionExample/
module05_testing_your_code/DiffusionSolution/
module05_testing_your_code/diffusion/.coverage
module05_testing_your_code/energy_example.py
module05_testing_your_code/saskatchewan/
module06_software_projects/greeter.py
module06_software_projects/command.py
module06_software_projects/Greetings/build
module06_software_projects/Greetings/*.egg-info
module06_software_projects/Greetings/docs/output/
module06_software_projects/Greetings/setup.py
module06_software_projects/myenv
module07_construction_and_design/anotherfile.py
module07_construction_and_design/config.yaml
module07_construction_and_design/context.py
module07_construction_and_design/*example.py
module08_advanced_programming_techniques/*.yaml
module08_advanced_programming_techniques/test_not_skipped.py
module08_advanced_programming_techniques/test_skipped.py
module09_programming_for_speed/*.py
module10_scientific_file_formats/*.csv
module10_scientific_file_formats/*.db
module10_scientific_file_formats/*.feather
module10_scientific_file_formats/*.hdf5
module10_scientific_file_formats/*.mko
module10_scientific_file_formats/*.mol
module10_scientific_file_formats/*.nc
module10_scientific_file_formats/*.out
module10_scientific_file_formats/*.parquet
module10_scientific_file_formats/*.py
module10_scientific_file_formats/*.tex
module10_scientific_file_formats/*.ttl
module10_scientific_file_formats/*.xml
module10_scientific_file_formats/*.xsd
module10_scientific_file_formats/*.xsl
module05_testing_your_code/DiffusionExercise/