| # Build artifacts | |
| /target/ | |
| *.so | |
| *.dylib | |
| *.dll | |
| # Python | |
| __pycache__/ | |
| *.py[cod] | |
| *$py.class | |
| *.egg-info/ | |
| .eggs/ | |
| dist/ | |
| build/ | |
| *.egg | |
| .venv/ | |
| venv/ | |
| ENV/ | |
| env/ | |
| paper_venv/ | |
| # IDE | |
| .idea/ | |
| .vscode/ | |
| *.swp | |
| *.swo | |
| *~ | |
| # OS | |
| .DS_Store | |
| Thumbs.db | |
| # Test artifacts | |
| .pytest_cache/ | |
| .coverage | |
| htmlcov/ | |
| .tox/ | |
| # Rust | |
| Cargo.lock | |
| # Local development | |
| .env | |
| .env.local | |
| *.local | |
| # Benchmark outputs | |
| *.bench | |
| benchmarks/output/ | |