roms-tools 0.1.0__py3-none-any.whl → 1.0.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
ci/environment.yml CHANGED
@@ -9,6 +9,7 @@ dependencies:
9
9
  - matplotlib
10
10
  - cartopy
11
11
  - xarray
12
+ - xarray-datatree
12
13
  - netcdf4
13
14
  - pooch
14
15
  - packaging
@@ -19,6 +20,7 @@ dependencies:
19
20
  - flake8
20
21
  - black
21
22
  - pre-commit
23
+ - coverage
22
24
  # docs
23
25
  - sphinx
24
26
  - nbsphinx
roms_tools/__init__.py CHANGED
@@ -10,5 +10,7 @@ except ImportError: # pragma: no cover
10
10
 
11
11
  from roms_tools.setup.grid import Grid # noqa: F401
12
12
  from roms_tools.setup.tides import TidalForcing # noqa: F401
13
- from roms_tools.setup.atmospheric_forcing import AtmosphericForcing # noqa: F401
14
- from roms_tools.setup.atmospheric_forcing import SWRCorrection # noqa: F401
13
+ from roms_tools.setup.surface_forcing import SurfaceForcing # noqa: F401
14
+ from roms_tools.setup.vertical_coordinate import VerticalCoordinate # noqa: F401
15
+ from roms_tools.setup.initial_conditions import InitialConditions # noqa: F401
16
+ from roms_tools.setup.boundary_forcing import BoundaryForcing # noqa: F401
roms_tools/_version.py CHANGED
@@ -1,2 +1,2 @@
1
1
  # Do not change! Do not track in version control!
2
- __version__ = "0.1.0"
2
+ __version__ = "1.0.0"