From c81c74f004af76f2bb08979ca84698127be15e98 Mon Sep 17 00:00:00 2001
From: wendtalexander <wendtalexander@protonmail.com>
Date: Mon, 16 Sep 2024 14:22:26 +0200
Subject: [PATCH] updating readme and adding project structure

---
 README.md      | 11 ++++++++++-
 pyproject.toml | 14 ++++++++++++++
 2 files changed, 24 insertions(+), 1 deletion(-)
 create mode 100644 pyproject.toml

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 <wendtalexander@protonmail.com>"]
+readme = "README.md"
+
+[tool.poetry.dependencies]
+python = "^3.12"
+
+
+[build-system]
+requires = ["poetry-core"]
+build-backend = "poetry.core.masonry.api"