Timeseries signal processing implementations for ezmsg
ezmsg
numpy
scipy
pywavelets
Install the latest release from pypi with: pip install ezmsg-sigproc
(or uv add ...
or poetry add ...
).
You can add the development version of ezmsg-sigproc
to your project's dependencies in one of several ways.
You can clone it and add its path to your project dependencies. You may wish to do this if you intend to edit ezmsg-sigproc
. If so, please refer to the Developers section below.
You can also add it directly from GitHub:
- Using
pip
:pip install git+https://github.com/ezmsg-org/ezmsg-sigproc.git@dev
- Using
poetry
:poetry add "git+https://github.com/ezmsg-org/ezmsg-sigproc.git@dev"
- Using
uv
:uv add git+https://github.com/ezmsg-org/ezmsg-sigproc --branch dev
We use uv
for development. It is not strictly required, but if you intend to contribute to ezmsg-sigproc then using uv
will lead to the smoothest collaboration.
- Install
uv
if not already installed. - Fork ezmsg-sigproc and clone your fork to your local computer.
- Open a terminal and
cd
to the cloned folder. uv sync
to create a .venv and install dependencies.uv run pre-commit install
to install pre-commit hooks to do linting and formatting.- After editing code and making commits, Run the test suite before making a PR:
uv run pytest tests