-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (36 loc) · 948 Bytes
/
Copy pathpyproject.toml
File metadata and controls
42 lines (36 loc) · 948 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
32
33
34
35
36
37
38
39
40
41
42
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "motfm"
version = "0.1.0"
description = "Medical Optimal Transport Flow Matching for medical image synthesis."
readme = "README.md"
requires-python = ">=3.9,<3.13"
license = { file = "LICENSE" }
dependencies = [
"flow_matching==1.0.10",
"matplotlib",
"monai_generative==0.2.3",
"numpy==1.26.4",
"PyYAML==6.0.2",
"pytorch-lightning==2.5.6",
"tensorboard",
"torch==2.5.1",
"tqdm==4.67.1",
]
[project.scripts]
motfm-train = "trainer:main"
motfm-infer = "inferer:main"
[project.urls]
Homepage = "https://github.com/milad1378yz/MOTFM"
Repository = "https://github.com/milad1378yz/MOTFM"
Paper = "https://arxiv.org/abs/2503.00266"
[tool.setuptools]
py-modules = ["trainer", "inferer"]
[tool.setuptools.packages.find]
where = ["."]
include = ["utils*"]
namespaces = true
[tool.black]
line-length = 100