mindvisualizer-live / pyproject.toml
Pixedar's picture
Deploy full MindVisualizer Python runtime
03e863f
Raw
History Blame Contribute Delete
785 Bytes
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "mindvisualizer"
version = "0.1.0"
description = "Brain flow particle visualizer with probe analysis"
readme = "README.md"
requires-python = ">=3.10,<3.13"
dependencies = [
"numpy>=1.24",
"scipy>=1.10",
"vtk>=9.2",
"langchain>=0.3",
"langchain-openai>=0.3",
"langchain-community>=0.3",
"faiss-cpu>=1.7",
"python-dotenv>=1.0",
"certifi>=2023.0",
"tiktoken>=0.5",
"brainglobe-atlasapi",
"nibabel",
"numpy",
"nilearn",
"scikit-image"
]
[project.scripts]
mindviz = "mindvisualizer.main:main"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
include = ["mindvisualizer*"]