Skip to content

Commit

Permalink
Finalize release.
Browse files Browse the repository at this point in the history
  • Loading branch information
jackz314 committed May 11, 2021
1 parent 8c4a89c commit 4049dea
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion eeglabio/_version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""The version number."""

__version__ = '0.0.1-4'
__version__ = '0.0.1'
10 changes: 5 additions & 5 deletions eeglabio/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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 <https://github.com/sccn/eeglab/blob/develop/functions/sigprocfunc/convertlocs.m>`_
and Matlab's `cart2sph <https://www.mathworks.com/help/matlab/ref/cart2sph.html>`_
Parameters
----------
cart : ndarray, shape (n_points, 3)
Expand All @@ -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
Expand Down

0 comments on commit 4049dea

Please sign in to comment.