Skip to content

Commit 71963ec

Browse files
committed
Add bctide entry point
1 parent 9a224ae commit 71963ec

2 files changed

Lines changed: 3 additions & 0 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,7 @@ interpolate_structure = "schimpy.interpolate_structure:interpolate_structure_cli
138138
merge_th = "schimpy.merge_th:merge_th_cli"
139139
create_station_output = "schimpy.create_station_output:create_station_output_cli"
140140
set_param = "schimpy.param:set_param_cli"
141+
bctide = "schimpy.bctide:bctide_cli"
141142

142143
# check_skewness = "schimpy.check_skewness:check_skewness_cli"
143144
# combine_flux = "schimpy.combine_flux:combine_flux_cli"

schimpy/__main__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
from schimpy.merge_th import merge_th_cli
2222
from schimpy.create_station_output import create_station_output_cli
2323
from schimpy.param import set_param_cli
24+
from schimpy.bctide import bctide_cli
2425

2526
# Commands to be checked for utility before re-adding
2627
# from schimpy.check_mesh_skewness import check_skewness_cli
@@ -73,6 +74,7 @@ def cli():
7374
cli.add_command(merge_th_cli, "merge_th")
7475
cli.add_command(create_station_output_cli, "create_station_output")
7576
cli.add_command(set_param_cli, "set_param")
77+
cli.add_command(bctide_cli, "bctide")
7678

7779
# Commands to be checked for utility before re-adding
7880
# cli.add_command(check_skewness_cli, "check_skewness")

0 commit comments

Comments
 (0)