diff options
Diffstat (limited to '.gitignore')
| -rw-r--r-- | .gitignore | 73 |
1 files changed, 65 insertions, 8 deletions
@@ -1,8 +1,65 @@ -conda_env*
-output.hdf5
-*__pycache__*
-complexipy.json
-build/*
-*egg-info*
-uv.lock
-dist/
+# Python +__pycache__/ +*.py[cod] +*$py.class +*.so +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +*.egg-info/ +.installed.cfg +*.egg + +# Virtual environments +venv/ +env/ +ENV/ +.venv + +# IDE +.vscode/ +.idea/ +*.swp +*.swo +*~ + +# Testing +.pytest_cache/ +.coverage +htmlcov/ + +# Type checking / linting +.ruff_cache/ +complexipy.json + +# OS +.DS_Store +Thumbs.db + +# Data files +*.hdf5 +*.h5 +*.zarr +output.* + +# Logs +*.log + +# uv lock file (we use pyproject.toml for deps) +uv.lock + +# Old backups (keep for reference but not committed) +v0_backup/ + +# Conda envs (legacy) +conda_env* |
