# Git
.git
.gitignore
.github

# Python
__pycache__/
*.py[cod]
*$py.class
*.so
*.pyc
*.pyo
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# Virtual environments
venv/
.venv/
ENV/
env/

# Testing
.pytest_cache/
.tox/
.coverage
.coverage.*
coverage.xml
coverage.json
htmlcov/
.hypothesis/
.benchmarks/
tests/

# Linting
.ruff_cache/
.mypy_cache/

# IDE
.vscode/
.idea/
*.swp
*.swo
*~

# OS
.DS_Store
Thumbs.db
target/

# Documentation
docs/
CONTRIBUTING.md
DEVELOPER.md
CHANGELOG.md

# CI/CD
tox.ini
.pre-commit-config.yaml
.secrets.baseline

# Docker
Dockerfile*
docker-compose*.yml
.dockerignore

# Local files
*.enc
*.dec
.secure-cipher/
.secure-cipher-docker/
data/

# Development
Makefile
demo_*.py
test_*.py
