gitighnore for python

This commit is contained in:
2026-04-14 17:56:40 -05:00
parent 9f0581fd3a
commit 299d0d7fd7

52
.gitignore vendored
View File

@@ -1,3 +1,55 @@
/target /target
.opencode/ .opencode/
# Python
**/__pycache__/
**/*.py[cod]
**/*.pyc
**/*.so
**/*.class
.Python
.venv/
venv/
env/
.env
**/*.log
# NumPy
**/*.npy
**/*.npz
# IDE
.idea/
.vscode/
**/*.swp
**/*.swo
**/*.suo
**/*.user
**/*.sln
# OS
.DS_Store
Thumbs.db
**/.DS_Store
# Jupyter
**/.ipynb_checkpoints
**/*.ipynb_checkpoints
# Model weights
**/*.pt
**/*.pth
**/*.bin
**/*.h5
**/*.hdf5
# PIP
pip-log.txt
pip-delete-this-directory.txt
**/pip-log.txt
**/pip-delete-this-directory.txt
# Data
**/*.pkl
**/*.pickle
**/*.h5
# Coverage
**/.coverage
**/coverage.xml
**/htmlcov/
# Testing
**/test_results/
**/pytest_cache/