This commit is contained in:
wendtalexander
2025-10-06 15:57:36 +02:00
commit 423754ece3
8 changed files with 1436 additions and 0 deletions

16
pyproject.toml Normal file
View File

@@ -0,0 +1,16 @@
[project]
name = "oepyhs2nix"
version = "0.1.0"
description = "Converting ophen-ephys data to nix format"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"matplotlib>=3.10.6",
"neo>=0.14.2",
"nixio>=1.5.4",
"rich>=14.1.0",
"scipy>=1.16.2",
"typer>=0.19.2",
]
[project.scripts]
oephys2nix = "oephys2nix.main:app"