Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
esantamariavazquez committed May 12, 2022
0 parents commit 4ebe965
Show file tree
Hide file tree
Showing 81 changed files with 19,804 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Add any directories, files, or patterns you don't want to be tracked by version control
.idea/
.idea/*
medusa.egg-info/
medusa.egg-info/*
*.pyc
*.pyo
*.mds
*.csv
*.mat
venv/
python-env/
build/
dist/
*.egg*
17 changes: 17 additions & 0 deletions LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
MIT License
Copyright (c) 2022 Eduardo Santamaría Vázquez
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Medusa-core

This package is your advanced tool for biosignal processing. It implements state-of-the-art methods that are use currently in research/engineering. Additionaly, is the base toolbox for MEDUSA, a platform to easily run and implement biofeedback experiments.

Medusa-core provides:
- State-of-the-art signal processing methods: especialized deep learning models, entropy metrics, connectivity, graph theory, etc
- High-level functionalities: brain-computer interfaces, beautiful plots
- Base functions for MEDUSA platform
4 changes: 4 additions & 0 deletions ReleaseToPyPi.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
cd "C://PATH//TO//YOUR//FOLDER"
python setup.py sdist
pip install twine
twine upload dist/*
3 changes: 3 additions & 0 deletions medusa/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from .frequency_filtering import *
from .spatial_filtering import *
from .epoching import *
Empty file added medusa/bci/__init__.py
Empty file.
Loading

0 comments on commit 4ebe965

Please sign in to comment.