# Ignore everything
*

# Allow project files
!.gitignore
!pyproject.toml
!uv.lock
!README.md

# Allow GitHub workflows
!.github/
!.github/**

# Allow source
!src/
!src/**

# Allow tests
!tests/
!tests/**

# Ignore pycache everywhere
__pycache__/
*.pyc
