File size: 785 Bytes
03e863f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[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*"]