-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
28 lines (21 loc) · 729 Bytes
/
Copy path.gitignore
File metadata and controls
28 lines (21 loc) · 729 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# Python environment and build artifacts
venv/
.env
__pycache__/
*.pyc
# IDE specific files
.vscode/ # VS Code specific settings
.idea/ # PyCharm specific settings
*.iml # PyCharm module files
# Operating System specific files
.DS_Store # macOS specific files
Thumbs.db # Windows thumbnail cache
*.csv # Catch any CSVs directly in the root (though data/ is preferred)
*.pkl # Catch any PKL files directly in the root
# Log files
*.log
logs/ # If you create a dedicated logs directory
# Pytest cache and coverage files (if you add unit tests later)
.pytest_cache/
.coverage
htmlcov/