Fanu2 commited on
Commit
2f9c2cd
·
1 Parent(s): 26da80c

Remove venv folder from Git tracking and add .gitignore

Browse files
Files changed (1) hide show
  1. .gitignore +12 -0
.gitignore ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Ignore Python virtual environments
2
+ venv/
3
+ __pycache__/
4
+ *.pyc
5
+ *.pyo
6
+ *.pyd
7
+ *.so
8
+ *.egg
9
+ *.egg-info/
10
+ dist/
11
+ build/
12
+