Commit ·
e38afe2
1
Parent(s): b9ff6d9
Add .gitignore for Python project
Browse files- Exclude virtual environments
- Exclude Python cache files
- Exclude models directory
- Exclude IDE files
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
- .gitignore +19 -0
.gitignore
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Virtual environment
|
| 2 |
+
.venv/
|
| 3 |
+
venv/
|
| 4 |
+
__pycache__/
|
| 5 |
+
*.pyc
|
| 6 |
+
|
| 7 |
+
# Models directory (if models are downloaded)
|
| 8 |
+
models/
|
| 9 |
+
|
| 10 |
+
# Python cache
|
| 11 |
+
.pytest_cache/
|
| 12 |
+
*.pyc
|
| 13 |
+
*.pyo
|
| 14 |
+
|
| 15 |
+
# IDE
|
| 16 |
+
.vscode/
|
| 17 |
+
.idea/
|
| 18 |
+
*.swp
|
| 19 |
+
*.swo
|