add git ignore
Browse files- .gitignore +22 -0
.gitignore
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Ignore Python cache files
|
| 2 |
+
__pycache__/
|
| 3 |
+
*.py[cod]
|
| 4 |
+
|
| 5 |
+
# Ignore environment and build files
|
| 6 |
+
.env
|
| 7 |
+
.venv/
|
| 8 |
+
*.egg-info/
|
| 9 |
+
build/
|
| 10 |
+
dist/
|
| 11 |
+
|
| 12 |
+
# Ignore temporary files
|
| 13 |
+
*.log
|
| 14 |
+
*.tmp
|
| 15 |
+
*.bak
|
| 16 |
+
*.swp
|
| 17 |
+
duplicates_small_sample.csv
|
| 18 |
+
|
| 19 |
+
# Ignore system files
|
| 20 |
+
.DS_Store
|
| 21 |
+
Thumbs.db
|
| 22 |
+
|