Files
dotfiles/home/.config/templates/python.gitignore
T

34 lines
334 B
Plaintext

# Python
__pycache__/
*.py[cod]
*.class
*.so
.Python
build/
dist/
*.egg-info/
*.egg
# uv / venv
.venv/
venv/
.uv-cache/
# Tests / coverage
.pytest_cache/
.coverage
.coverage.*
htmlcov/
.tox/
.nox/
# Ruff / ty / mypy cache
.ruff_cache/
.ty_cache/
.mypy_cache/
.pyre/
# Jupyter
.ipynb_checkpoints
# IDE local
.vscode/
.idea/
# Env
.env