From c86d97d236066e408e9de7a62dd1d117e75a169e Mon Sep 17 00:00:00 2001 From: David Ketcheson Date: Wed, 11 Oct 2023 19:03:31 +0300 Subject: [PATCH] Move python directory to top level. --- {src/python/geoclaw => geoclaw}/__init__.py | 0 {src/python/geoclaw => geoclaw}/data.py | 0 {src/python/geoclaw => geoclaw}/data/info_sz.dat.txt | 0 {src/python/geoclaw => geoclaw}/datatools/__init__.py | 0 {src/python/geoclaw => geoclaw}/datatools/fixdata.py | 0 {src/python/geoclaw => geoclaw}/datatools/iotools.py | 0 {src/python/geoclaw => geoclaw}/dtopotools.py | 0 {src/python/geoclaw => geoclaw}/etopotools.py | 0 {src/python/geoclaw => geoclaw}/fgmax_tools.py | 0 {src/python/geoclaw => geoclaw}/fgout_tools.py | 0 {src/python/geoclaw => geoclaw}/geoplot.py | 0 {src/python/geoclaw => geoclaw}/kmltools.py | 0 {src/python/geoclaw => geoclaw}/marching_front.py | 0 {src/python/geoclaw => geoclaw}/most2geoclaw.py | 0 {src/python/geoclaw => geoclaw}/multilayer/__init__.py | 0 {src/python/geoclaw => geoclaw}/multilayer/plot.py | 0 {src/python/geoclaw => geoclaw}/okada.py | 0 {src/python/geoclaw => geoclaw}/plotfg.py | 0 {src/python/geoclaw => geoclaw}/resolution.py | 0 {src/python/geoclaw => geoclaw}/surge/__init__.py | 0 {src/python/geoclaw => geoclaw}/surge/plot.py | 0 {src/python/geoclaw => geoclaw}/surge/quality.py | 0 {src/python/geoclaw => geoclaw}/surge/storm.py | 0 {src/python/geoclaw => geoclaw}/test.py | 0 {src/python/geoclaw => geoclaw}/topotools.py | 0 {src/python/geoclaw => geoclaw}/units.py | 0 {src/python/geoclaw => geoclaw}/util.py | 0 27 files changed, 0 insertions(+), 0 deletions(-) rename {src/python/geoclaw => geoclaw}/__init__.py (100%) rename {src/python/geoclaw => geoclaw}/data.py (100%) rename {src/python/geoclaw => geoclaw}/data/info_sz.dat.txt (100%) rename {src/python/geoclaw => geoclaw}/datatools/__init__.py (100%) rename {src/python/geoclaw => geoclaw}/datatools/fixdata.py (100%) rename {src/python/geoclaw => geoclaw}/datatools/iotools.py (100%) rename {src/python/geoclaw => geoclaw}/dtopotools.py (100%) rename {src/python/geoclaw => geoclaw}/etopotools.py (100%) rename {src/python/geoclaw => geoclaw}/fgmax_tools.py (100%) rename {src/python/geoclaw => geoclaw}/fgout_tools.py (100%) rename {src/python/geoclaw => geoclaw}/geoplot.py (100%) rename {src/python/geoclaw => geoclaw}/kmltools.py (100%) rename {src/python/geoclaw => geoclaw}/marching_front.py (100%) rename {src/python/geoclaw => geoclaw}/most2geoclaw.py (100%) rename {src/python/geoclaw => geoclaw}/multilayer/__init__.py (100%) rename {src/python/geoclaw => geoclaw}/multilayer/plot.py (100%) rename {src/python/geoclaw => geoclaw}/okada.py (100%) rename {src/python/geoclaw => geoclaw}/plotfg.py (100%) rename {src/python/geoclaw => geoclaw}/resolution.py (100%) rename {src/python/geoclaw => geoclaw}/surge/__init__.py (100%) rename {src/python/geoclaw => geoclaw}/surge/plot.py (100%) rename {src/python/geoclaw => geoclaw}/surge/quality.py (100%) rename {src/python/geoclaw => geoclaw}/surge/storm.py (100%) rename {src/python/geoclaw => geoclaw}/test.py (100%) rename {src/python/geoclaw => geoclaw}/topotools.py (100%) rename {src/python/geoclaw => geoclaw}/units.py (100%) rename {src/python/geoclaw => geoclaw}/util.py (100%) diff --git a/src/python/geoclaw/__init__.py b/geoclaw/__init__.py similarity index 100% rename from src/python/geoclaw/__init__.py rename to geoclaw/__init__.py diff --git a/src/python/geoclaw/data.py b/geoclaw/data.py similarity index 100% rename from src/python/geoclaw/data.py rename to geoclaw/data.py diff --git a/src/python/geoclaw/data/info_sz.dat.txt b/geoclaw/data/info_sz.dat.txt similarity index 100% rename from src/python/geoclaw/data/info_sz.dat.txt rename to geoclaw/data/info_sz.dat.txt diff --git a/src/python/geoclaw/datatools/__init__.py b/geoclaw/datatools/__init__.py similarity index 100% rename from src/python/geoclaw/datatools/__init__.py rename to geoclaw/datatools/__init__.py diff --git a/src/python/geoclaw/datatools/fixdata.py b/geoclaw/datatools/fixdata.py similarity index 100% rename from src/python/geoclaw/datatools/fixdata.py rename to geoclaw/datatools/fixdata.py diff --git a/src/python/geoclaw/datatools/iotools.py b/geoclaw/datatools/iotools.py similarity index 100% rename from src/python/geoclaw/datatools/iotools.py rename to geoclaw/datatools/iotools.py diff --git a/src/python/geoclaw/dtopotools.py b/geoclaw/dtopotools.py similarity index 100% rename from src/python/geoclaw/dtopotools.py rename to geoclaw/dtopotools.py diff --git a/src/python/geoclaw/etopotools.py b/geoclaw/etopotools.py similarity index 100% rename from src/python/geoclaw/etopotools.py rename to geoclaw/etopotools.py diff --git a/src/python/geoclaw/fgmax_tools.py b/geoclaw/fgmax_tools.py similarity index 100% rename from src/python/geoclaw/fgmax_tools.py rename to geoclaw/fgmax_tools.py diff --git a/src/python/geoclaw/fgout_tools.py b/geoclaw/fgout_tools.py similarity index 100% rename from src/python/geoclaw/fgout_tools.py rename to geoclaw/fgout_tools.py diff --git a/src/python/geoclaw/geoplot.py b/geoclaw/geoplot.py similarity index 100% rename from src/python/geoclaw/geoplot.py rename to geoclaw/geoplot.py diff --git a/src/python/geoclaw/kmltools.py b/geoclaw/kmltools.py similarity index 100% rename from src/python/geoclaw/kmltools.py rename to geoclaw/kmltools.py diff --git a/src/python/geoclaw/marching_front.py b/geoclaw/marching_front.py similarity index 100% rename from src/python/geoclaw/marching_front.py rename to geoclaw/marching_front.py diff --git a/src/python/geoclaw/most2geoclaw.py b/geoclaw/most2geoclaw.py similarity index 100% rename from src/python/geoclaw/most2geoclaw.py rename to geoclaw/most2geoclaw.py diff --git a/src/python/geoclaw/multilayer/__init__.py b/geoclaw/multilayer/__init__.py similarity index 100% rename from src/python/geoclaw/multilayer/__init__.py rename to geoclaw/multilayer/__init__.py diff --git a/src/python/geoclaw/multilayer/plot.py b/geoclaw/multilayer/plot.py similarity index 100% rename from src/python/geoclaw/multilayer/plot.py rename to geoclaw/multilayer/plot.py diff --git a/src/python/geoclaw/okada.py b/geoclaw/okada.py similarity index 100% rename from src/python/geoclaw/okada.py rename to geoclaw/okada.py diff --git a/src/python/geoclaw/plotfg.py b/geoclaw/plotfg.py similarity index 100% rename from src/python/geoclaw/plotfg.py rename to geoclaw/plotfg.py diff --git a/src/python/geoclaw/resolution.py b/geoclaw/resolution.py similarity index 100% rename from src/python/geoclaw/resolution.py rename to geoclaw/resolution.py diff --git a/src/python/geoclaw/surge/__init__.py b/geoclaw/surge/__init__.py similarity index 100% rename from src/python/geoclaw/surge/__init__.py rename to geoclaw/surge/__init__.py diff --git a/src/python/geoclaw/surge/plot.py b/geoclaw/surge/plot.py similarity index 100% rename from src/python/geoclaw/surge/plot.py rename to geoclaw/surge/plot.py diff --git a/src/python/geoclaw/surge/quality.py b/geoclaw/surge/quality.py similarity index 100% rename from src/python/geoclaw/surge/quality.py rename to geoclaw/surge/quality.py diff --git a/src/python/geoclaw/surge/storm.py b/geoclaw/surge/storm.py similarity index 100% rename from src/python/geoclaw/surge/storm.py rename to geoclaw/surge/storm.py diff --git a/src/python/geoclaw/test.py b/geoclaw/test.py similarity index 100% rename from src/python/geoclaw/test.py rename to geoclaw/test.py diff --git a/src/python/geoclaw/topotools.py b/geoclaw/topotools.py similarity index 100% rename from src/python/geoclaw/topotools.py rename to geoclaw/topotools.py diff --git a/src/python/geoclaw/units.py b/geoclaw/units.py similarity index 100% rename from src/python/geoclaw/units.py rename to geoclaw/units.py diff --git a/src/python/geoclaw/util.py b/geoclaw/util.py similarity index 100% rename from src/python/geoclaw/util.py rename to geoclaw/util.py