File size: 679 Bytes
8999949
 
 
 
 
 
 
 
 
 
 
 
 
 
 
a327b90
8999949
 
 
 
 
 
 
 
 
 
 
 
 
 
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
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"

[project]
name = "brain-tumor-flair-classifier"
version = "0.1.0"
description = "FLAIR NIfTI brain tumor binary classifier"
readme = "README.md"
requires-python = ">=3.10"
license = { file = "LICENSE" }
authors = [
  { name = "Songline-music" },
]
dependencies = [
  "hf-xet>=1.1",
  "huggingface-hub>=0.27,<1.0",
  "nibabel>=5.0,<6.0",
  "numpy>=2.0,<3.0",
  "Pillow>=10.0,<13.0",
  "safetensors>=0.5,<1.0",
  "torch>=2.5",
  "transformers>=4.53,<5.0",
]

[project.scripts]
brain-tumor-flair-classify = "brain_tumor_flair_classifier.cli:main"

[tool.setuptools.packages.find]
where = ["src"]