| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169 |
- # ==============================
- # Python bytecode
- # ==============================
- __pycache__/
- *.py[cod]
- *$py.class
- # ==============================
- # C extensions
- # ==============================
- *.so
- # ==============================
- # Distribution / packaging
- # ==============================
- .Python
- build/
- develop-eggs/
- dist/
- downloads/
- eggs/
- .eggs/
- lib/
- lib64/
- parts/
- sdist/
- var/
- *.egg-info/
- *.egg
- MANIFEST
- # ==============================
- # Virtual environments
- # ==============================
- venv/
- .env/
- .venv/
- ENV/
- env/
- env.bak/
- venv.bak/
- # ==============================
- # Installer logs
- # ==============================
- pip-log.txt
- pip-delete-this-directory.txt
- # ==============================
- # Unit test / coverage
- # ==============================
- htmlcov/
- .tox/
- .nox/
- .coverage
- .coverage.*
- .cache
- pytest_cache/
- nosetests.xml
- coverage.xml
- *.cover
- *.py,cover
- # ==============================
- # Jupyter Notebook
- # ==============================
- .ipynb_checkpoints
- # ==============================
- # PyInstaller
- # ==============================
- *.manifest
- *.spec
- # ==============================
- # Logs
- # ==============================
- *.log
- # ==============================
- # OS files
- # ==============================
- .DS_Store
- Thumbs.db
- # ==============================
- # Database files
- # ==============================
- *.db
- *.sqlite
- *.sqlite3
- # ==============================
- # IDE
- # ==============================
- .vscode/
- .idea/
- *.swp
- *.swo
- .claude/
- # ==============================
- # mypy
- # ==============================
- .mypy_cache/
- .dmypy.json
- dmypy.json
- # ==============================
- # Pyre
- # ==============================
- .pyre/
- # ==============================
- # Ruff / lint
- # ==============================
- .ruff_cache/
- # ==============================
- # Pylint
- # ==============================
- .pylint.d/
- # ==============================
- # pytype
- # ==============================
- .pytype/
- # ==============================
- # dotenv
- # ==============================
- .env
- .env.*
- # ==============================
- # Local data / experiment output
- # ==============================
- data/
- outputs/
- checkpoints/
- models/
- # ==============================
- # LaTeX build artifacts
- # ==============================
- paper/*.aux
- paper/*.bbl
- paper/*.blg
- paper/*.log
- paper/*.out
- paper/*.fls
- paper/*.fdb_latexmk
- paper/*.synctex.gz
- # ==============================
- # Large feature / experiment cache (keep local only)
- # ==============================
- results/p0_features/
- results/*.npz
- __pycache__/
- patents/patent-01-lint/node_modules/
- # ==============================
- # Agent workspace — run data, not tracked
- # Each run creates workspace/run_YYYYMMDD_HHMMSS/ with intermediate
- # and final artifacts. These are local execution data, never committed.
- # ==============================
- **/workspace/
- !**/workspace/.gitkeep
|