Eyob-Sol commited on
Commit
8de43d6
·
verified ·
1 Parent(s): 5275e75

Create .gitignore

Browse files
Files changed (1) hide show
  1. .gitignore +32 -0
.gitignore ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Python cache files
2
+ __pycache__/
3
+ *.pyc
4
+ *.pyo
5
+ *.pyd
6
+ *.pkl
7
+
8
+ # Bytecode and compiled extensions
9
+ *.so
10
+ *.dll
11
+ *.dylib
12
+
13
+ # Local config
14
+ *.env
15
+ .env
16
+
17
+ # OS-generated files
18
+ .DS_Store
19
+ Thumbs.db
20
+
21
+ # Output artifacts (optional)
22
+ outputs/*.png
23
+ outputs/*.pdf
24
+
25
+ # Jupyter checkpoints (if any)
26
+ .ipynb_checkpoints/
27
+
28
+ # VSCode metadata
29
+ .vscode/
30
+
31
+ # PyCharm metadata
32
+ .idea/