Skip to content

Commit

Permalink
Release v0.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
adam2392 committed Feb 25, 2021
1 parent 65d10be commit 5fa7489
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 4 deletions.
2 changes: 1 addition & 1 deletion mne_hfo/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""MNE software for computing HFOs from iEEG data."""

__version__ = '0.1.dev0'
__version__ = '0.1'

from mne_hfo.detect import RMSDetector, LineLengthDetector, HilbertDetector
from mne_hfo.hodetect import MorphologyDetector, CSDetector
Expand Down
23 changes: 20 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,24 @@
#! /usr/bin/env python
"""Setup MNE-HFO."""
"""Setup MNE-HFO.
To re-setup:
python setup.py sdist bdist_wheel
pip install -r requirements.txt --process-dependency-links
To test on test pypi:
twine upload --repository testpypi dist/*
# test upload
pip install -i https://test.pypi.org/simple/ --no-deps seek_localize
twine upload dist/*
"""

import os

from setuptools import setup, find_packages

# get the version
Expand All @@ -13,9 +31,8 @@
if version is None:
raise RuntimeError('Could not determine version')


descr = ('MNE-HFO: Facilitates estimation/detection of high-frequency oscillation'
'events on iEEG data with MNE-Python and MNE-BIDS.')
'events on iEEG data with MNE-Python, MNE-BIDS and scikit-learn.')

DISTNAME = 'mne-hfo'
DESCRIPTION = descr
Expand Down

0 comments on commit 5fa7489

Please sign in to comment.