Fanwang Meng commited on
Commit
e32f178
1 Parent(s): 62c4769

Add .gitignore

Browse files
Files changed (1) hide show
  1. .gitignore +111 -0
.gitignore ADDED
@@ -0,0 +1,111 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Prerequisites
2
+ *.d
3
+
4
+ # Compiled object files
5
+ *.slo
6
+ *.lo
7
+ *.o
8
+ *.obj
9
+
10
+ # Precompiled headers
11
+ *.gch
12
+ *.pch
13
+
14
+ # Compiled dynamic libraries
15
+ *.so
16
+ *.so.[0-9]*
17
+ *.dylib
18
+ *.dll
19
+
20
+ # Fortran module files
21
+ *.mod
22
+ *.smod
23
+
24
+ # Compiled static libraries
25
+ *.lai
26
+ *.la
27
+ *.a
28
+ *.lib
29
+
30
+ # Executables
31
+ *.exe
32
+ *.out
33
+ *.app
34
+
35
+ # Byte-compiled / optimized / DLL files
36
+ __pycache__/
37
+ *.py[cod]
38
+ *$py.class
39
+
40
+ # Distribution / packaging
41
+ .Python
42
+ build/
43
+ develop-eggs/
44
+ dist/
45
+ downloads/
46
+ eggs/
47
+ .eggs/
48
+ lib/
49
+ lib64/
50
+ parts/
51
+ sdist/
52
+ var/
53
+ wheels/
54
+ .installed.cfg
55
+ MANIFEST
56
+ *.egg-info/
57
+ *.egg
58
+ *.manifest
59
+ *.spec
60
+ pip-log.txt
61
+ pip-delete-this-directory.txt
62
+ # Unit test / coverage reports
63
+ htmlcov/
64
+ .tox/
65
+ .coverage
66
+ .coverage.*
67
+ .cache
68
+ nosetests.xml
69
+ coverage.xml
70
+ *,cover
71
+ .pytest_cache/
72
+
73
+ # Documentation
74
+ doc/html/
75
+ doc/latex/
76
+ doc/man/
77
+ doc/xml/
78
+ doc/_build/
79
+ doc/source
80
+ doc/modules
81
+
82
+ # Environments
83
+ .env
84
+ .venv
85
+ env/
86
+ venv/
87
+ ENV/
88
+
89
+ # Editor junk
90
+ tags
91
+ [._]*.s[a-v][a-z]
92
+ [._]*.sw[a-p]
93
+ [._]s[a-v][a-z]
94
+ [._]sw[a-p]
95
+ *~
96
+ \#*\#
97
+ .\#*
98
+ .ropeproject
99
+ .idea/
100
+ .spyderproject
101
+ .spyproject
102
+ .vscode/
103
+ # Mac .DS_Store
104
+ .DS_Store
105
+
106
+ # jupyter notebook checkpoints
107
+ .ipynb_checkpoints
108
+
109
+ # version file generated by rob
110
+ B3clf/_version.py
111
+