-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (57 loc) · 1.29 KB
/
pyproject.toml
File metadata and controls
61 lines (57 loc) · 1.29 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
[project]
name = "ignition"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"accelerate>=1.11.0",
"albumentations>=1.3.0",
"apex>=0.9.10.dev0",
"black>=25.1.0",
"fire>=0.7.1",
"flatten-dict>=0.4.2",
"hydra-core>=1.3.2",
"image-dataset-viz>=0.2.2",
"isort>=6.0.1",
"jupyter>=1.1.1",
"lmdb>=1.7.3",
"monai[einops,gdown,h5py,huggingface-hub,imagecodecs,itk,matplotlib,mlflow,nibabel,ninja,optuna,pandas,pillow,pydicom,tifffile,tqdm,transformers]>=1.5.0",
"moviepy>=2.2.1",
"peft>=0.18.1",
"pytest>=8.4.1",
"pytorch-ignite>=0.4.8",
"tensorboard>=2.20.0",
"tensorboardx>=2.6.4",
"torch>=1.10.2",
"torchvision>=0.11.3",
"wandb>=0.23.0",
]
[tool.uv]
package = true
[tool.black]
# copied from MONAI, must be decent starting point for settings
line-length = 120
target-version = ['py39', 'py310', 'py311', 'py312']
include = '\.pyi?$'
exclude = '''
(
/(
# exclude a few common directories in the root of the project
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| venv
| \.pytype
| _build
| buck-out
| build
| dist
)/
# also separately exclude a file named versioneer.py
| monai/_version.py
)
'''