46 lines
No EOL
395 B
Text
46 lines
No EOL
395 B
Text
# Git
|
|
.git
|
|
.gitignore
|
|
|
|
# Python
|
|
__pycache__
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
.Python
|
|
env
|
|
pip-log.txt
|
|
pip-delete-this-directory.txt
|
|
.tox
|
|
.coverage
|
|
.coverage.*
|
|
.pytest_cache
|
|
htmlcov
|
|
|
|
# Virtual environments
|
|
.venv
|
|
.env
|
|
venv/
|
|
ENV/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Project specific
|
|
uv.lock
|
|
.mypy_cache
|
|
.opencode
|
|
|
|
# Documentation build
|
|
DOCS/
|
|
|
|
# Keep data directory for testing
|
|
!data/ |