raul3820 commited on
Commit ·
8eb84c3
1
Parent(s): 4fb0378
Add .gitignore
Browse files- .gitignore +44 -0
.gitignore
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Python
|
| 2 |
+
__pycache__/
|
| 3 |
+
*.py[cod]
|
| 4 |
+
*$py.class
|
| 5 |
+
.so
|
| 6 |
+
.Python
|
| 7 |
+
build/
|
| 8 |
+
develop egg-info/
|
| 9 |
+
dist/
|
| 10 |
+
logs/
|
| 11 |
+
*.log
|
| 12 |
+
.python-version
|
| 13 |
+
|
| 14 |
+
# Virtual Environments
|
| 15 |
+
.venv/
|
| 16 |
+
venv/
|
| 17 |
+
ENV/
|
| 18 |
+
env/
|
| 19 |
+
.env/
|
| 20 |
+
|
| 21 |
+
# IDE
|
| 22 |
+
.vscode/
|
| 23 |
+
.idea/
|
| 24 |
+
*.swp
|
| 25 |
+
*.swo
|
| 26 |
+
*~
|
| 27 |
+
|
| 28 |
+
# OS
|
| 29 |
+
.DS_Store
|
| 30 |
+
Thumbs.db
|
| 31 |
+
|
| 32 |
+
# Testing
|
| 33 |
+
.pytest_cache/
|
| 34 |
+
.coverage
|
| 35 |
+
htmlcov/
|
| 36 |
+
|
| 37 |
+
# Ruff
|
| 38 |
+
.ruff_cache/
|
| 39 |
+
|
| 40 |
+
# MyPy
|
| 41 |
+
.mypy_cache/
|
| 42 |
+
|
| 43 |
+
# Hugging Face cache (optional - if you want to ignore downloaded models)
|
| 44 |
+
# .cache/
|