Bhavishya commited on
Commit
e24f643
·
1 Parent(s): 08cf472

removed uneccesary files

Browse files
Files changed (1) hide show
  1. .gitignore +31 -2
.gitignore CHANGED
@@ -1,3 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  .env
2
- .venv
3
- __pycache__
 
 
 
 
 
 
 
 
1
+ # Python
2
+ __pycache__/
3
+ *.pyc
4
+ *.pyo
5
+ *.pyd
6
+
7
+ # Virtual env
8
+ .venv/
9
+ venv/
10
+
11
+ # Mac
12
+ .DS_Store
13
+
14
+ # Build artifacts
15
+ build/
16
+ dist/
17
+ *.egg-info/
18
+
19
+ # Logs
20
+ *.log
21
+
22
+ # Env
23
  .env
24
+
25
+ # Large binaries (safety)
26
+ *.so
27
+ *.dylib
28
+ *.dll
29
+
30
+ # Torch cache
31
+ *.pt
32
+ *.bin