Skip to content
This repository has been archived by the owner on May 14, 2021. It is now read-only.

Ipysurfer #31

Merged
merged 17 commits into from
Aug 12, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@ python:
- 3.6
sudo: false
install:
- pip install codespell flake8 pydocstyle
- pip install codespell flake8 pydocstyle pytest pytest-cov
- python setup.py install
script:
- make pep
- python -c "import mne_g3d" # just a smoke test for now
- pytest # unit tests
- python -c "import ipysurfer" # a smoke test
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ PYTHON ?= python
PYTESTS ?= py.test
CTAGS ?= ctags
CODESPELL_SKIPS ?= "*.fif"
CODESPELL_DIRS ?= mne_g3d/
CODESPELL_DIRS ?= ipysurfer/
all: clean inplace test test-doc

clean-pyc:
Expand All @@ -32,12 +32,12 @@ inplace:
$(PYTHON) setup.py build_ext -i

test:
pytest mne_g3d
pytest ipysurfer

pep: flake pydocstyle codespell-error

flake:
flake8 --count mne_g3d
flake8 --count ipysurfer

pydocstyle:
pydocstyle
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# Ipysurfer

[![Binder](https://mybinder.org/badge.svg)](https://mybinder.org/v2/gh/mne-tools/mne-gsoc2018-3d/master?filepath=examples%2Fbrain-mesh.ipynb)
[![Binder](https://mybinder.org/badge.svg)](https://mybinder.org/v2/gh/mne-tools/mne-gsoc2018-3d/master?filepath=examples%2Fipysurfer.ipynb)

This project enables interactive 3D visualization of human brain activity inside Jupyter Notebook.
It can be regarded as an alternative to `mayavi` and `PySurfer`-based human brain visualization, built on top of `ipyvolume` and `ipywidgets`.

![Demo brain](doc/images/demo.png)

For a quick demonstration of `ipysurfer`, see [this Binder demo](https://mybinder.org/v2/gh/mne-tools/mne-gsoc2018-3d/master?filepath=examples%2Fbrain-mesh.ipynb).
For a quick demonstration of `ipysurfer`, see [this Binder demo](https://mybinder.org/v2/gh/mne-tools/mne-gsoc2018-3d/master?filepath=examples%2Fipysurfer.ipynb).

## Requirements

Expand Down
Binary file modified doc/images/demo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
209 changes: 0 additions & 209 deletions examples/brain-mesh.ipynb

This file was deleted.

Loading