forked from sirocco-rt/sirocco
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
114 lines (92 loc) · 1.41 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
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
# This is the git ignore for python
# ignore binaries in bin/ such as e.g. py78a
bin/py*
bin/windsave2table*
bin/rad_hydro*
bin/inspect_wind*
bin/modify_wind*
# Run files
*.spec*
*.pf.old
*.out.pf
mod.pf
# Object files
*.o
*.ko
*.obj
*.elf
# Build directories
cmake-build-*
build
# Precompiled Headers
*.gch
*.pch
# Libraries
*.lib
*.a
*.la
*.lo
# Shared objects (inc. Windows DLLs)
*.dll
*.so
*.so.*
*.dylib
# Executables
*.exe
*.out
*.app
*.i*86
*.x86_64
*.hex
# things from gsl, may not be necessary
software/gsl*
software/cunit*
include/gsl/
include/CUnit/
lib/pkgconfig/
# the configure Makefile should not be tracked
Makefile
# sphinx stuff
docs/sphinx/html/
docs/sphinx/doctrees/
docs/sphinx/venv/
# doxygen stuff
docs/doxygen/html/
docs/doxygen/latex/
# For if you're running py_progs in a virtual environment
py_progs/venv/
py_progs/*.html
# For when the wiki is cloned locally
wiki/
# python and system files
*.pyc
*~
*.DS_Store
**/*foo.txt
# some gsl files
*.Plo
*.Po
# Some atomic data files should not be tracked by this repository
data/
xmod/
# avoid tracking symbolic links errenously put in xdata
xdata/xdata
# we shouldn't be tracking version.h either
source/version.h
# we also should not track templates.h.old either
source/templates.h.old
# python output files
*.diag
*.spec
*.log_spec
*.spec_tot
*.log_spec_tot
*.rdpar
*.sig
*.out.pf
logfile
# IDE files
.idea/
**/*.vscode/
py_progs/.idea/
scratch/