Spaces:
Sleeping
Sleeping
Ryan Cashman commited on
Commit ·
7cff4f2
1
Parent(s): 59970b5
Enhance .gitignore with comprehensive Python, IDE, OS, and project patterns
Browse files- .gitignore +38 -0
.gitignore
CHANGED
|
@@ -1,3 +1,41 @@
|
|
|
|
|
| 1 |
venv/
|
| 2 |
__pycache__/
|
| 3 |
*.pyc
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Python
|
| 2 |
venv/
|
| 3 |
__pycache__/
|
| 4 |
*.pyc
|
| 5 |
+
*.pyo
|
| 6 |
+
*.pyd
|
| 7 |
+
.Python
|
| 8 |
+
*.so
|
| 9 |
+
*.egg
|
| 10 |
+
*.egg-info/
|
| 11 |
+
dist/
|
| 12 |
+
build/
|
| 13 |
+
|
| 14 |
+
# IDEs
|
| 15 |
+
.vscode/
|
| 16 |
+
.idea/
|
| 17 |
+
*.swp
|
| 18 |
+
*.swo
|
| 19 |
+
*~
|
| 20 |
+
|
| 21 |
+
# OS
|
| 22 |
+
.DS_Store
|
| 23 |
+
Thumbs.db
|
| 24 |
+
|
| 25 |
+
# Gradio
|
| 26 |
+
.gradio/
|
| 27 |
+
flagged/
|
| 28 |
+
|
| 29 |
+
# Testing
|
| 30 |
+
.pytest_cache/
|
| 31 |
+
.coverage
|
| 32 |
+
htmlcov/
|
| 33 |
+
*.cover
|
| 34 |
+
|
| 35 |
+
# Logs and temporary files
|
| 36 |
+
*.log
|
| 37 |
+
*.tmp
|
| 38 |
+
*.temp
|
| 39 |
+
|
| 40 |
+
# Project specific
|
| 41 |
+
MCP_VALIDATION_REPORT.json
|