# Python packaging
build/
dist/
*.egg-info/
.eggs/
src/proximitygraphs/_version.py

# Virtual environments
.venv/
venv/
env/

# Test/cache
.pytest_cache/
.ruff_cache/
.coverage
htmlcov/

# Documentation build
docs/build/

# OS/editor
.DS_Store
.idea/

# ignore the logs folder
logs/

# ignore the .log files
*.log

# ignore the .pyc files
*.pyc

# ignore the .py.log files
*.py.log

# ignore ALL the __pycache__ folders in any subdirectory
**/__pycache__/

# ignore LaTeX temporary files
*.aux
*.out
*.bbl
*.blg
*.fls
*.fdb_latexmk
*.synctex.gz

.vscode/

