From 4049dea70de0dd03233a2428e12a786a23078f54 Mon Sep 17 00:00:00 2001 From: Jack Zhang Date: Tue, 11 May 2021 00:08:31 -0700 Subject: [PATCH] Finalize release. --- README.md | 4 ++-- eeglabio/_version.py | 2 +- eeglabio/utils.py | 10 +++++----- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index e84dea5..d93e8cc 100644 --- a/README.md +++ b/README.md @@ -4,10 +4,10 @@ I/O support for EEGLAB files in Python. ### Installation -Install from [PyPI](https://test.pypi.org/project/eeglabio): +Install from [PyPI](https://pypi.org/project/eeglabio): ``` -pip install -i https://test.pypi.org/simple/ eeglabio +pip install eeglabio ``` ### Dependencies diff --git a/eeglabio/_version.py b/eeglabio/_version.py index 2063284..e9005b0 100644 --- a/eeglabio/_version.py +++ b/eeglabio/_version.py @@ -1,3 +1,3 @@ """The version number.""" -__version__ = '0.0.1-4' +__version__ = '0.0.1' diff --git a/eeglabio/utils.py b/eeglabio/utils.py index 2a07006..9164dd4 100644 --- a/eeglabio/utils.py +++ b/eeglabio/utils.py @@ -19,11 +19,11 @@ def _xyz_cart_to_eeglab_sph(x, y, z): Array containing points in spherical coordinates (sph_theta, sph_phi, sph_radius, theta, radius, sph_theta_besa, sph_phi_besa) - + See Also -------- https://github.com/sccn/eeglab/blob/develop/functions/sigprocfunc/convertlocs.m - + https://www.mathworks.com/help/matlab/ref/cart2sph.html """ # noqa: E501 @@ -73,10 +73,10 @@ def topo2sph(theta, radius): def cart_to_eeglab_sph(cart): """Convert Cartesian coordinates to EEGLAB spherical coordinates. - Implementation is based on + Implementation is based on `EEGLAB's convertlocs `_ and Matlab's `cart2sph `_ - + Parameters ---------- cart : ndarray, shape (n_points, 3) @@ -88,7 +88,7 @@ def cart_to_eeglab_sph(cart): Array containing points in spherical coordinates (sph_theta, sph_phi, sph_radius, theta, radius, sph_theta_besa, sph_phi_besa) - + See Also -------- cart_to_eeglab