# Git
.git
.gitignore

# Python
__pycache__
*.pyc
*.pyo
*.pyd
.Python
.pytest_cache
.coverage
htmlcov/
.tox/
.cache
nosetests.xml
coverage.xml
.mypy_cache
.ruff_cache

# Virtual environments
.venv
venv/
ENV/

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

# OS
.DS_Store
Thumbs.db

# Documentation
docs/
LICENSE
# Keep README.md as it's required by hatchling
!README.md

# CI/CD
.github/
scripts/

# Tests
tests/

# Build artifacts
dist/
build/
*.egg-info/
