-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
39 lines (35 loc) · 935 Bytes
/
pyproject.toml
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "brlp"
version = "0.0.0"
authors = [ { name="Lemuel Puglisi", email="[email protected]" } ]
description = "Enhancing Spatiotemporal Disease Progression Models via Latent Diffusion and Prior Knowledge"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"pyyaml",
"numpy == 1.*",
"pandas == 2.*",
"matplotlib == 3.*",
"nibabel == 5.*",
"torch == 2.*",
"tensorboard == 2.*",
"monai == 1.3.*",
"monai-generative == 0.2.3",
"tqdm == 4.*",
"leaspy @ git+ssh://[email protected]/LemuelPuglisi/leaspy-clone",
"rich"
]
[project.scripts]
brlp = "brlp.cli:infer"
[options]
package_dir = "src"
[options.packages.find]
where="src"