# Version control
.git
.gitignore

# Python artifacts
__pycache__
*.pyc
*.pyo
*.egg-info
.eggs
dist
build

# Virtual environments
.venv
venv
env

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

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

# Docs (not needed in image)
docs
*.md
LICENSE

# Tests (not needed in image)
tests
.pytest_cache
.mypy_cache
.coverage
htmlcov

# Docker
Dockerfile
.dockerignore
docker-compose*.yml

# Misc
*.log
.env
.env.*
