-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
82 lines (76 loc) · 2.09 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[tool.poetry]
name = "vital"
version = "0.1.0"
description = "Deep Learning Tooling from the Videos & Images Theory and Analytics Laboratory at UdeS"
authors = ["Nathan Painchaud <nathan.painchaud@usherbrooke.ca>"]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/vitalab/vital"
classifiers=[
"Environment :: Console",
"Natural Language :: English",
# Pick your license as you wish
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
]
packages = [
{ include = "vital" },
{ include = "hydra_plugins" },
]
[tool.poetry.dependencies]
python = "~3.10.6"
torch = "~2.0.0"
torchvision = "~0.15.1"
pytorch-lightning = { version = "~2.0.0", extras = ["extra"] }
hydra-core = "~1.3.0"
torchmetrics = "*"
torchinfo = "*"
pathos = "*"
pillow = "*"
numpy = "*"
scipy = "*"
seaborn = "*"
matplotlib = "*"
umap-learn = { version = "*", extras = ["plot"] }
pacmap = "*"
pandas = "*"
h5py = "*"
PyYAML = "*"
StrEnum = "*"
tqdm = "*"
SimpleITK = "*"
medpy = "*"
natsort = "*"
nibabel = "*"
albumentations = "*"
comet-ml = "*"
python-dotenv = "*"
scikit-image = "*"
scikit-learn = "*"
Keras-Preprocessing = "*"
[tool.poetry.group.dev.dependencies]
pre-commit = "^2.20.0"
isort = "==5.12.0"
black = "==23.3.0"
flake8 = "==6.0.0"
flake8-docstrings = "==1.7.0"
[tool.poetry.scripts]
vital-runner = "vital.runner:main"
bmode-pol2cart = "vital.utils.image.us.bmode:main"
camus-hdf5 = "vital.data.camus.dataset_generator:main"
acdc-hdf5 = "vital.data.acdc.dataset_generator:main"
anatomical-da = "vital.data.augmentation.anatomically_constrained_da:main"
[tool.black]
line-length = 120
exclude = "(.eggs|.git|.hg|.mypy_cache|.nox|.tox|.venv|.svn|_build|buck-out|build|dist)"
[tool.isort]
profile = "black"
line_length = 120
src_paths = ["vital"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"