diff options
| author | Sam Scholten | 2026-03-30 11:42:22 +1000 |
|---|---|---|
| committer | Sam Scholten | 2026-03-30 11:42:22 +1000 |
| commit | 637ddc52f4dc23ba3aa7cccef014aa85cab36b49 (patch) | |
| tree | d9116fb184f32741bf1c8571ab6160be0b08acb3 /.gitignore | |
| parent | 5a7c47d626ff3fc1352b2036001e853ae211d1af (diff) | |
| download | picostream-c6fc92917d325b1cb4f1ce2720b2365aabc15a7b.tar.gz picostream-c6fc92917d325b1cb4f1ce2720b2365aabc15a7b.zip | |
Release v1.0.0v1.0
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* |
