cvxgrp / signal-decomposition

A simple and general framework for signal decomposition
BSD 3-Clause "New" or "Revised" License
60 stars 7 forks source link

Add setup.py file #7

Closed akshayka closed 2 years ago

akshayka commented 2 years ago

Removes the need to append to sys.path, which is error-prone.

Instead, you can just type (in the base directory) pip install . to install the package into a local environment, then use it from any other Python module (located anywhere on your machine) with import osd.

Later, when you know which versions of the dependencies you require, you can add that information to this file.

bmeyers commented 2 years ago

thank you @akshayka!