Skip to content
This repository has been archived by the owner on Sep 2, 2023. It is now read-only.

Commit

Permalink
Merge c8d5c4e into a17baf9
Browse files Browse the repository at this point in the history
  • Loading branch information
fphammerle committed May 5, 2019
2 parents a17baf9 + c8d5c4e commit 56191fe
Show file tree
Hide file tree
Showing 10 changed files with 1,520 additions and 29 deletions.
1 change: 1 addition & 0 deletions .gitignore
@@ -1,4 +1,5 @@
.coverage
.ipynb_checkpoints/
build/
dist/
version.py
9 changes: 5 additions & 4 deletions examples/Pipfile
Expand Up @@ -5,12 +5,13 @@ name = "pypi"

[packages]
freesurfer-volume-reader = {editable = true, path = "./.."}
pandas = "*"
matplotlib = "*"
seaborn = "*"
pandas = "<1"
matplotlib = "<4"
seaborn = "<1"
notebook = "<6"

[dev-packages]
pylint = ">=2.3.0"
pylint = ">=2.3.0,<3"

[requires]
python_version = "3"
356 changes: 331 additions & 25 deletions examples/Pipfile.lock

Large diffs are not rendered by default.

12 changes: 12 additions & 0 deletions examples/README.md
@@ -0,0 +1,12 @@
# freesurfer-volume-reader examples

View examples online with jupyter's
[nbviewer](https://nbviewer.jupyter.org/github/fphammerle/freesurfer-volume-reader/tree/master/examples/)

or locally:
```sh
pip3 install --user pipenv
git clone https://github.com/fphammerle/freesurfer-volume-reader.git
cd freesurfer-volume-reader/examples
pipenv run jupyter notebook
```

0 comments on commit 56191fe

Please sign in to comment.