From b68f8bbc7abf27a979c17b3af6150ae9db1b85f1 Mon Sep 17 00:00:00 2001 From: Jan Grewe Date: Mon, 18 Jan 2021 09:56:26 +0100 Subject: [PATCH] [readme] fix links and add util package to setup.py --- README.md | 12 ++++++------ setup.py | 3 ++- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index a922151..a58bd71 100644 --- a/README.md +++ b/README.md @@ -1,18 +1,18 @@ # NixView -A PyQt based viewer for nix datafiles +A PyQt5 based cross-platform viewer for nix datafiles --- under development --- -## Nix +## Neuroscience information exchange data container -The nix data model is a generic model for storing scientific data with attached metadata. - -For more information on nix see https://github.com/G-Node/nix +The nix data model is a generic model for storing scientific data along with the attached metadata within one container. +For more information on NIX see [NIX Github Repository](https://github.com/G-Node/nix) or [NIX documentation](https://nixio.readthedocs.io/en/master/) ## Dependencies - PyQt5 - nixio - +- matplotlib +- numpy diff --git a/setup.py b/setup.py index 2e13d99..0a45a3f 100644 --- a/setup.py +++ b/setup.py @@ -26,7 +26,8 @@ with open(README) as f: packages = [ "nixview", "nixview.ui", - "nixview.data_models" + "nixview.data_models", + "nixview.util", ] install_req = ["nixio>=1.4.0", "PyQt5", "matplotlib", "numpy"]