-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (28 loc) · 752 Bytes
/
Copy pathpyproject.toml
File metadata and controls
31 lines (28 loc) · 752 Bytes
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
[project]
name = "brain-mri-tumor-classifier"
version = "0.1.0"
description = "Streamlit app classifying brain MRI tumors with a PyTorch CNN, with Grad-CAM explainability."
readme = "readme.md"
requires-python = ">=3.10,<3.13"
license = { text = "MIT" }
authors = [{ name = "HalemoGPA" }]
dependencies = [
"streamlit>=1.41,<2.0",
"torch>=2.5,<2.6",
"torchvision>=0.20,<0.21",
"pillow>=10.3",
"numpy>=1.26,<2.0",
"grad-cam>=1.5,<2.0",
"opencv-python-headless>=4.10",
"reportlab>=4.2",
"matplotlib>=3.8",
]
[tool.uv]
override-dependencies = [
"opencv-python ; python_version < '0'",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src"]