diff --git a/README.md b/README.md index 290fbb0..2f51dda 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,16 @@ Relaxed ELectrophysiology Acquisition, Control, and Stimulation in python Implementing [relacs](https://github.com/relacs/relacs) with MCC USB 1608GX-2AO / 1808X devices ([multifunction-usb-daq-devices](https://digilent.com/shop/mcc-daq/data-acquisition/low-cost-daq/)) -ToDo: +# Installation +You have to install the MCC library (follow the installing instructions for [linux](https://github.com/mccdaq/uldaq) or [windows](https://github.com/mccdaq/mcculw)). + +After successful installing, you can use clone the reposity and install it with + +```sh +pip install -e . +``` + +# ToDo: [ ] Input and output to and from the MCC devices diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..12e3886 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,14 @@ +[tool.poetry] +name = "pyrelacs" +version = "0.1.0" +description = "Relaxed ELectrophysiology Acquisition, Control, and Stimulation in python" +authors = ["wendtalexander "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.12" + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api"