-
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
Fraser Goldsworth
committed
Jul 26, 2022
1 parent
9814786
commit 2e6089e
Showing
3 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
Empty file.
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,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. |
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
import setuptools | ||
|
||
setup( | ||
name='PVCALC', | ||
name='pvcalc', | ||
version='0.2.0', | ||
author='Fraser William Goldsworth', | ||
author_email='[email protected]', | ||
|
@@ -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'], | ||
) |