Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
65 changes: 65 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
# -----------------------------------------------------------------------------
# Sphinx build output
# -----------------------------------------------------------------------------
_build1

# Generated API docs (if autogenerated)
api/generated/

# -----------------------------------------------------------------------------
# Python
# -----------------------------------------------------------------------------
__pycache__/
*.py[cod]
*$py.class

.pytest_cache/
.mypy_cache/
.ruff_cache/
.coverage
coverage.xml
htmlcov/

# -----------------------------------------------------------------------------
# Virtual environments
# -----------------------------------------------------------------------------
.venv/
venv/
env/

# -----------------------------------------------------------------------------
# Jupyter
# -----------------------------------------------------------------------------
.ipynb_checkpoints/

# -----------------------------------------------------------------------------
# Documentation tooling caches
# -----------------------------------------------------------------------------
.doctrees/

# If using sphinx-gallery
auto_examples/

# If using jupyter-cache / myst-nb
.jupyter_cache/

# -----------------------------------------------------------------------------
# OS / editor files
# -----------------------------------------------------------------------------
.DS_Store
Thumbs.db

.vscode/
.idea/

# Vim
*.swp
*.swo

# -----------------------------------------------------------------------------
# Package managers / environments
# -----------------------------------------------------------------------------
# uv
.uv/
.pixi/
conda-meta/
2 changes: 2 additions & 0 deletions doc/geoclaw.rst
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,8 @@ More will eventually appear in the :ref:`apps`.
nearshore_interp
tsunamidata
surgedata
netcdf
netcdf_utils_module
marching_front
force_dry
sphere_source
Expand Down
Loading