28 lines
358 B
Plaintext
28 lines
358 B
Plaintext
# Python environments and caches.
|
|
.venv/
|
|
__pycache__/
|
|
*.py[cod]
|
|
.pytest_cache/
|
|
.ruff_cache/
|
|
*.egg-info/
|
|
build/
|
|
dist/
|
|
|
|
# Local credentials. Never commit API keys.
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# Downloaded datasets and generated pipeline output.
|
|
raw/
|
|
qc_outputs/
|
|
outputs/
|
|
samples/
|
|
artifacts/
|
|
*.log
|
|
|
|
# Editor and operating-system files.
|
|
.DS_Store
|
|
.idea/
|
|
.vscode/
|