# Git and version control
.git
.gitignore
.gitattributes

# Documentation
docs/
*.md
!README.md
!CHANGELOG.md

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

# Testing artifacts
.pytest_cache/
.coverage
.coverage.*
coverage.xml
*.cover
.hypothesis/
htmlcov/
.tox/
test-results/

# Environment and IDE
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/
.vscode/
.idea/
*.swp
*.swo
*~

# OS specific
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db

# Docker
docker-compose*.yml

# Jupyter notebooks
.ipynb_checkpoints/
*.ipynb

# Large data files and results
results/
benchmarks/results/
*.log
*.dat
*.h5
*.hdf5

# Temporary files
tmp/
temp/
.tmp/
.temp/

# CI/CD
.github/
.gitlab-ci.yml
.travis.yml
.circleci/

# Development tools
.pre-commit-config.yaml
mypy.ini
.mypy_cache/
.ruff_cache/
.black/
.isort/
