60 lines
No EOL
606 B
Text
60 lines
No EOL
606 B
Text
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
env/
|
|
venv/
|
|
ENV/
|
|
env.bak/
|
|
venv.bak/
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
|
|
# Virtual environments
|
|
.conda/
|
|
.venv/
|
|
|
|
# Environment variables
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# Testing
|
|
.coverage
|
|
.pytest_cache/
|
|
htmlcov/
|
|
|
|
# Claude Code
|
|
.claude/
|
|
|
|
# Development documentation
|
|
IMPLEMENTATION_PLAN.md
|
|
CLAUDE.md
|
|
PARAMETER_MAPPING.md
|
|
IMPROVEMENT_PLAN.md
|
|
|
|
# Debug and temporary test files
|
|
debug_*.py
|
|
test_debug_*.py
|
|
test_performance_*.py
|
|
test_user_*.py
|
|
test_new_*.py
|
|
test_roocode_compatibility.py |