-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
92 lines (85 loc) · 2.14 KB
/
Copy pathpyproject.toml
File metadata and controls
92 lines (85 loc) · 2.14 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta:__legacy__"
[project]
name = "pybnt"
version = "0.2.0"
description = "PyBrainViewer - AI-Powered Multi-Function Brain Visual Tool"
readme = "README.md"
license = {text = "MIT"}
authors = [
{name = "Tang Zhihao", email = "tzhazuma@shanghaitech.edu.cn"},
]
requires-python = ">=3.10"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
"Topic :: Scientific/Engineering :: Visualization",
]
dependencies = [
"numpy<2.2.0",
"pyvista>=0.44.2",
"PyQt6>=6.8.0",
"opencv-python>=4.11.0",
"nilearn>=0.11.1",
"nibabel>=5.3.2",
"scipy>=1.15.1",
"scikit-image>=0.25.0",
"scikit-learn>=1.6.1",
"matplotlib>=3.10.0",
"pydicom>=3.0.1",
"tqdm>=4.67.1",
"pillow>=11.1.0",
"numba>=0.61.0",
"dicom2nifti>=2.5.1",
"networkx>=3.4.2",
"click>=8.1.0",
"rich>=13.9.4",
"textual>=1.0.0",
"openai>=1.68.0",
"requests>=2.32.3",
"dashscope>=1.22.1",
"pymeshlab>=2023.12",
"lancedb>=0.16",
"fastembed>=0.4",
]
[project.optional-dependencies]
ai = [
"torch>=2.4.0",
"tensorflow>=2.18.0",
"transformers>=4.48.1",
"brainseg-containers>=1.0",
"brainles-hd-bet>=2.0",
"onnxruntime>=1.18.0",
]
external = [
"pyelastix>=1.2",
"spm12>=2.2.0",
]
dev = [
"pytest>=8.0",
"pytest-cov>=5.0",
"black>=24.0",
"ruff>=0.3.0",
]
[project.scripts]
pybnt = "pybnt.cli.main:cli"
pybnt-gui = "pybnt.gui.app:main"
[project.urls]
Homepage = "https://github.com/tzhazuma/PyBNT"
[tool.pytest.ini_options]
testpaths = ["tests"]
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
]
[tool.setuptools.packages.find]
where = ["."]
include = ["pybnt*"]
[tool.setuptools.package-data]
"pybnt" = ["data/templates/**/*", "data/templates/*"]