greeta commited on
Commit
8614a89
·
verified ·
1 Parent(s): 3e655b9

Upload .gitignore

Browse files
Files changed (1) hide show
  1. .gitignore +68 -0
.gitignore ADDED
@@ -0,0 +1,68 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Python
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+ *.so
6
+ .Python
7
+ build/
8
+ develop-eggs/
9
+ dist/
10
+ downloads/
11
+ eggs/
12
+ .eggs/
13
+ lib/
14
+ lib64/
15
+ parts/
16
+ sdist/
17
+ var/
18
+ wheels/
19
+ *.egg-info/
20
+ .installed.cfg
21
+ *.egg
22
+
23
+ # Virtual environments
24
+ venv/
25
+ env/
26
+ ENV/
27
+ .venv
28
+ .deps/
29
+ .tmp/
30
+
31
+ # IDE
32
+ .vscode/
33
+ .idea/
34
+ *.swp
35
+ *.swo
36
+ *~
37
+
38
+ # Environment variables
39
+ .env
40
+ .env.local
41
+
42
+ # Logs
43
+ *.log
44
+ logs/
45
+
46
+ # Database
47
+ *.db
48
+ *.sqlite
49
+ *.sqlite3
50
+
51
+ # Testing
52
+ .pytest_cache/
53
+ .coverage
54
+ htmlcov/
55
+ .tox/
56
+
57
+ # Jupyter Notebook
58
+ .ipynb_checkpoints
59
+
60
+ # Machine Learning
61
+ *.h5
62
+ *.pkl
63
+ *.pth
64
+ *.onnx
65
+
66
+ # OS
67
+ .DS_Store
68
+ Thumbs.db