forked from pyccel/pyccel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
70 lines (58 loc) · 894 Bytes
/
.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
# Ignore all
*
# Unignore all with extensions
!*.*
# Unignore all dirs
!*/
################
*.pyc
*.pyo
.ipynb_checkpoints/
.cache
.mypy_cache
__pycache__
__pyccel__
__epyccel__
.DS_Store
.vscode
build
*egg*
*dist*
doc/_build
doc/source
*.pyccel
*.mod
*.out
*.o
*.so
*.log
*.ps
*.gv
*.exe
*.lock
*.swp
pyccel/compilers/*.json
tests/*.pyccel
tests/*.f90
tests/*.mod
tests/*.o
tests/scripts/*.pyccel
tests/scripts/*.f90
tests/scripts/*.mod
tests/scripts/*.o
tests/scripts/core/*.pyccel
tests/scripts/core/*.f90
tests/scripts/core/*.mod
tests/scripts/core/*.o
tests/pyccel/scripts/runtest_headers.py
tests/pyccel/scripts/headers.pyh
tests/pyccel/scripts/test_headers.py
tests/examples/*.pyccel
tests/examples/*.f90
tests/examples/*.mod
tests/examples/*.o
tests/examples/openmp/*.pyccel
tests/examples/openmp/*.f90
tests/examples/openmp/*.mod
tests/examples/openmp/*.o
benchmarks/tmp/*