47 lines
500 B
Plaintext
47 lines
500 B
Plaintext
# Python bytecode and caches
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
venv/
|
|
env/
|
|
ENV/
|
|
|
|
# Packaging and build output
|
|
build/
|
|
dist/
|
|
*.egg-info/
|
|
.eggs/
|
|
|
|
# Test, coverage, and type-checker caches
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
.pyre/
|
|
|
|
# Jupyter notebooks
|
|
.ipynb_checkpoints/
|
|
|
|
# IDE and editor files
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Local environment files
|
|
.env
|
|
.env.*
|
|
|
|
# Codex/agent workspace metadata
|
|
.agents/
|
|
.codex/
|