30 lines
330 B
Plaintext
30 lines
330 B
Plaintext
# Python cache and bytecode
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
venv/
|
|
|
|
# Environment files
|
|
.env
|
|
|
|
# Build and packaging
|
|
build/
|
|
dist/
|
|
*.egg-info/
|
|
|
|
# Test and tool caches
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
|
|
# IDE and OS files
|
|
.idea/
|
|
.vscode/
|
|
.DS_Store
|
|
.cursor
|
|
|
|
# Cookbook code
|
|
vendor/agno/cookbook/ |