diff options
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0f0b92d --- /dev/null +++ b/.gitignore @@ -0,0 +1,53 @@ +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# Virtual environment +venv/ +.env/ + +# Distribution / packaging +build/ +dist/ +*.egg-info/ +*.spec + +# Logs and temporary files +*.log +*.tmp + +# Jupyter Notebook checkpoints +.ipynb_checkpoints/ + +# VS Code settings +.vscode/ + +# macOS system files +.DS_Store + +# Dependencies +pip-log.txt +pip-delete-this-directory.txt + +# Testing +.coverage +.tox/ +nosetests.xml +pytest_cache/ + +# MyPy +.mypy_cache/ + +# PyInstaller +*.manifest +*.spec + +# CLI-specific files +*.exe +*.out +*.app + +# Custom user files (if any) +local_settings.py +config.json |