diff --git a/recipe/meta.json b/recipe/meta.json index f814f5c95..d00ae96c2 100644 --- a/recipe/meta.json +++ b/recipe/meta.json @@ -32,5 +32,5 @@ "pyyaml =6.0.*" ] }, - "version": "2.1.0" + "version": "2.1.1" } diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 35f0c0a16..ca5936f78 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -1,6 +1,6 @@ package: name: uwtools - version: 2.1.0 + version: 2.1.1 source: path: ../src build: @@ -8,7 +8,7 @@ build: noarch: python number: 0 # <= always reset to 0 when version changes requirements: - host: + build: - pip run: - f90nml 1.4.* diff --git a/recipe/run_test.sh b/recipe/run_test.sh index 00de2b162..08f9a5bbf 100755 --- a/recipe/run_test.sh +++ b/recipe/run_test.sh @@ -13,12 +13,8 @@ cli() { msg Testing CLI program ( - set -eu - clis=( uw ) - for x in ${clis[*]}; do - which $x - $x --help &>/dev/null - done + set -eux + uw --help >/dev/null ) msg OK } diff --git a/src/MANIFEST.in b/src/MANIFEST.in new file mode 100644 index 000000000..bdefd7502 --- /dev/null +++ b/src/MANIFEST.in @@ -0,0 +1 @@ +graft uwtools/resources/ diff --git a/src/setup.py b/src/setup.py index 005b7be2c..0f3b411c2 100644 --- a/src/setup.py +++ b/src/setup.py @@ -26,6 +26,7 @@ kwargs = { "entry_points": {"console_scripts": ["uw = %s.cli:main" % name_py]}, + "include_package_data": True, "name": name_conda, "packages": find_packages(exclude=["%s.tests" % name_py], include=[name_py, "%s.*" % name_py]), "version": meta["version"],