Create .gitignore
Browse files- .gitignore +32 -0
.gitignore
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Python cache files
|
| 2 |
+
__pycache__/
|
| 3 |
+
*.pyc
|
| 4 |
+
*.pyo
|
| 5 |
+
*.pyd
|
| 6 |
+
*.pkl
|
| 7 |
+
|
| 8 |
+
# Bytecode and compiled extensions
|
| 9 |
+
*.so
|
| 10 |
+
*.dll
|
| 11 |
+
*.dylib
|
| 12 |
+
|
| 13 |
+
# Local config
|
| 14 |
+
*.env
|
| 15 |
+
.env
|
| 16 |
+
|
| 17 |
+
# OS-generated files
|
| 18 |
+
.DS_Store
|
| 19 |
+
Thumbs.db
|
| 20 |
+
|
| 21 |
+
# Output artifacts (optional)
|
| 22 |
+
outputs/*.png
|
| 23 |
+
outputs/*.pdf
|
| 24 |
+
|
| 25 |
+
# Jupyter checkpoints (if any)
|
| 26 |
+
.ipynb_checkpoints/
|
| 27 |
+
|
| 28 |
+
# VSCode metadata
|
| 29 |
+
.vscode/
|
| 30 |
+
|
| 31 |
+
# PyCharm metadata
|
| 32 |
+
.idea/
|