-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #102 from jmills-ncar/master
A number of package upgrades to better handle PBS
- Loading branch information
Showing
9 changed files
with
130 additions
and
88 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 |
---|---|---|
|
@@ -2,19 +2,21 @@ | |
|
||
setup( | ||
name='wrfhydropy', | ||
version='0.0.5dev0', | ||
version='0.0.5', | ||
packages=find_packages(), | ||
package_data={'wrfhydropy': ['core/data/*']}, | ||
url='https://github.com/NCAR/wrf_hydro_py', | ||
license='MIT', | ||
install_requires=['pandas', | ||
'f90nml', | ||
'netcdf4', | ||
'deepdiff', | ||
'pathlib', | ||
'xarray', | ||
'datetime', | ||
'pytest', | ||
'pytest-datadir-ng'], | ||
'pytest-datadir-ng', | ||
'boltons'], | ||
author='Joe Mills', | ||
author_email='[email protected]', | ||
description='Crude API for the WRF-Hydro model', | ||
|
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 |
---|---|---|
|
@@ -3,6 +3,7 @@ | |
import os | ||
import warnings | ||
import pathlib | ||
import netCDF4 | ||
|
||
from boltons import iterutils | ||
|
||
|
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
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
Oops, something went wrong.