JoeArmani
commited on
Commit
·
870c0d1
1
Parent(s):
dc453bd
update gitignore
Browse files- .gitignore +53 -0
.gitignore
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Byte-compiled / optimized / DLL files
|
| 2 |
+
__pycache__/
|
| 3 |
+
*.py[cod]
|
| 4 |
+
*$py.class
|
| 5 |
+
|
| 6 |
+
# Virtual environment directories
|
| 7 |
+
env/
|
| 8 |
+
venv/
|
| 9 |
+
ENV/
|
| 10 |
+
.VENV/
|
| 11 |
+
|
| 12 |
+
# Jupyter Notebook checkpoints
|
| 13 |
+
.ipynb_checkpoints/
|
| 14 |
+
|
| 15 |
+
# Distribution / packaging
|
| 16 |
+
.Python
|
| 17 |
+
build/
|
| 18 |
+
dist/
|
| 19 |
+
*.egg-info/
|
| 20 |
+
|
| 21 |
+
# Logs and temporary files
|
| 22 |
+
*.log
|
| 23 |
+
*.temp
|
| 24 |
+
*.pid
|
| 25 |
+
*.swp
|
| 26 |
+
*.swo
|
| 27 |
+
|
| 28 |
+
# IDE-specific files
|
| 29 |
+
.vscode/
|
| 30 |
+
.idea/
|
| 31 |
+
*.sublime-workspace
|
| 32 |
+
*.sublime-project
|
| 33 |
+
|
| 34 |
+
# Operating system files
|
| 35 |
+
.DS_Store
|
| 36 |
+
Thumbs.db
|
| 37 |
+
|
| 38 |
+
# Test coverage reports
|
| 39 |
+
htmlcov/
|
| 40 |
+
.coverage
|
| 41 |
+
*.cover
|
| 42 |
+
|
| 43 |
+
# Profiling data
|
| 44 |
+
*.prof
|
| 45 |
+
|
| 46 |
+
# Pytest cache
|
| 47 |
+
.pytest_cache/
|
| 48 |
+
.tox/
|
| 49 |
+
.nox/
|
| 50 |
+
|
| 51 |
+
# Data
|
| 52 |
+
datasets/*
|
| 53 |
+
!datasets/.gitkeep
|