gitighnore for python
This commit is contained in:
52
.gitignore
vendored
52
.gitignore
vendored
@@ -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/
|
||||||
|
|||||||
Reference in New Issue
Block a user