Skip to content

Commit

Permalink
Version 1.0.1: Minor bug-fix release (PyPI release)
Browse files Browse the repository at this point in the history
Simplified installation options down to pip install 'holoviews[extras]'
and ensured that SVG files are also included in assets. This commit is
the one released as version 1.0.1 on PyPI.
  • Loading branch information
jlstevens committed Mar 26, 2015
1 parent 18ee923 commit b68e6d7
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,9 @@
from distutils.core import setup

setup_args = {}
extras_require = {}

install_requires = ['param>=1.3.1', 'numpy>=1.0']

extras_require['mpl'] = ['matplotlib>=1.4']
extras_require['notebook'] = extras_require['mpl'] + ['ipython[notebook]']
extras_require['all'] = extras_require['notebook'] + ['mpld3', 'pandas', 'seaborn']

extras_require = {'extras': ['mpld3', 'pandas', 'seaborn', 'nose']}

setup_args.update(dict(
name='holoviews',
Expand Down Expand Up @@ -72,7 +67,7 @@ def check_pseudo_package(path):
# Add unit tests
setup_args['packages'].append('holoviews.tests')

setup_args['package_data']['holoviews.assets'] = ['*.png', '*.rst']
setup_args['package_data']['holoviews.assets'] = ['*.png', '*.svg', '*.rst']
setup_args['package_data']['holoviews.notebooks'] = ['*.ipynb', '*.npy']

check_pseudo_package(os.path.join('.', 'holoviews', 'tests'))
Expand Down

0 comments on commit b68e6d7

Please sign in to comment.