-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (43 loc) · 959 Bytes
/
pyproject.toml
File metadata and controls
48 lines (43 loc) · 959 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
43
44
45
46
47
48
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "fomo-code"
version = "0.1.0"
description = "FOMO25 Challenge Codebase - Foundation Models for Brain MRI Analysis"
readme = "README.md"
requires-python = ">=3.11"
license = {text = "MIT"}
authors = [
{name = "Asbjørn Munk"},
{name = "Jakob Ambsdorf"},
{name = "FOMO25 Challenge Organizers"},
]
dependencies = [
"lightning>=2.1.4",
"numpy>=1.23",
"yucca==2.2.6",
"opencv-python>=4.8.1.78",
"einops>=0.7",
"torch<2.3.0",
"nnunetv2>=2.4.2",
"wandb>=0.16.0",
"opencv-python>=4.8.0",
]
[project.optional-dependencies]
dev = [
"jupyter>=1.0.0",
]
test = [
"pytest>=6.0.0",
"flake8>=6.1.0",
"black>=23.10.1",
]
[tool.setuptools]
package-dir = {"" = "src"}
packages = {find = {where = ["src"]}}
[tool.pytest]
testpaths = ["tests"]
[tool.black]
line-length = 88
target-version = ["py39"]