From 2e6089ebbcdf3c1c3f133e3d1c6a51a19a826c0e Mon Sep 17 00:00:00 2001 From: Fraser Goldsworth Date: Tue, 26 Jul 2022 10:59:43 +0100 Subject: [PATCH] ready for v0.2 --- MANIFEST.in | 0 README.md | 4 ++-- setup.py | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) delete mode 100644 MANIFEST.in diff --git a/MANIFEST.in b/MANIFEST.in deleted file mode 100644 index e69de29..0000000 diff --git a/README.md b/README.md index b45f7cc..850a451 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,2 @@ -# PVCALC -PVCALC is a module for calculating PV from MITgcm output, building on the xarray framework. It features a series of sub-modules containing useful functions for calculating PV and two scripts: one for calculating the PV of a model level and another for slices along bands of constant latitude. The scripts can be launced from the command line with most parameters set by flags. The scripts will only work on files generated by the mnc module. See the sample `data.mnc` file. +# pvcalc +`pvcalc` is a module for calculating PV from MITgcm output, building on the xarray framework. It features a series of sub-modules containing useful functions for calculating PV and two scripts: one for calculating the PV of a model level and another for slices along bands of constant latitude. diff --git a/setup.py b/setup.py index bc08d55..7b443b9 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ import setuptools setup( - name='PVCALC', + name='pvcalc', version='0.2.0', author='Fraser William Goldsworth', author_email='fraser.goldsworth@physics.ox.ac.uk', @@ -13,5 +13,5 @@ license='LICENSE.txt', description='A package for calculating PV from MITgcm outputs', long_description=open('README.md').read(), - install_requires=[], + install_requires=['xgcm'], )