Skip to content

Commit

Permalink
add new imports and requirements
Browse files Browse the repository at this point in the history
matplotlib is needed now,
bokeh and seaborn for later.
  • Loading branch information
mroberge committed Mar 9, 2018
1 parent 8313ec1 commit 2a54e31
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
6 changes: 6 additions & 0 deletions hydrofunctions/charts.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,9 @@
Charting functions for Hydrofunctions.
"""

import matplotlib.pyplot as plt
from matplotlib.ticker import NullFormatter

# I don't need these yet, but soon...
import bokeh
import seaborn
3 changes: 3 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@
history = history_file.read()

requirements = [
'matplotlib',
'bokeh',
'seaborn',
'numpy',
'pandas',
'requests',
Expand Down

0 comments on commit 2a54e31

Please sign in to comment.