-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
32581cb
commit 3e7b678
Showing
3 changed files
with
16 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,10 @@ | ||
from . import cmor_check | ||
import click | ||
|
||
from .cmor_check import check_file | ||
|
||
def check(): | ||
cmor_check() | ||
|
||
@click.command() | ||
@click.option("--cv", help="path to CV table") | ||
@click.argument("filename") | ||
def check(filename, cv): | ||
check_file(filename, cv) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,6 +26,7 @@ classifiers = [ | |
dependencies = [ | ||
"numpy", | ||
"xarray", | ||
"click", | ||
] | ||
dynamic = ["version"] | ||
|
||
|