CoolFace
Apppublic

franklab/ssms_gui

sourceHugging Facemitupdated 5mo agoView on Hugging Face
2likes
pyproject.toml23 linesDownload Raw Back to root
1[project]2name = "ssms-gui"3version = "0.1.0"4description = "Streamlit dashboard for visualizing sequential sampling models from ssm-simulators."5requires-python = ">=3.13"6dependencies = [7    "altair",8    "cloudpickle",9    "matplotlib",10    "pandas",11    "seaborn",12    "ssm-simulators>=0.12.2",13    "streamlit>1.30.0",14]15 16[dependency-groups]17dev = [18    "pytest",19]20 21[tool.pytest.ini_options]22testpaths = ["tests"]23