-
Notifications
You must be signed in to change notification settings - Fork 23
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 #26 from adamabernathy/master
Handles empty API responses safely. Closes #25
- Loading branch information
Showing
3 changed files
with
18 additions
and
10 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
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,14 +1,15 @@ | ||
from distutils.core import setup | ||
|
||
setup( | ||
name='MesoPy', | ||
py_modules=['MesoPy'], | ||
version='2.0.2', | ||
description='A pure python wrapper for the MesoWest API', | ||
author='Josh Clark', | ||
author_email='[email protected]', | ||
url='https://github.com/mesowx/MesoPy', | ||
download_url='https://github.com/mesowx/MesoPy/tarball/2.0.2', | ||
keywords=['weather API climate MesoWest meteorology'], | ||
classifiers=[], requires=[] | ||
name='MesoPy', | ||
py_modules=['MesoPy'], | ||
version='2.0.3', | ||
description='A Python wrapper for the MesoWest environmental data', | ||
author='Mesowest/SynopticLabs', | ||
author_email='[email protected]', | ||
url='https://github.com/mesowx/MesoPy', | ||
download_url='https://github.com/mesowx/MesoPy/tarball/2.0.2', | ||
keywords=['weather API climate MesoWest meteorology'], | ||
classifiers=[], | ||
requires=[], | ||
) |
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