-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
39 lines (34 loc) · 1.28 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
[project]
name = "2D-VQ-AE-2"
version = "0.3.0"
description = "2D Vector-Quantized Auto-Encoder for compression of Whole-Slide Images in Histopathology"
authors = [
{name = "Robert Jan Schlimbach"},
]
dependencies = [
"torch==1.11.0+cu115",
"torchvision==0.12.0+cu115",
"pytorch-lightning>=1.6.1",
"torchmetrics>=0.8.0",
"hydra @ git+https://github.com/sara-nl/hydra-2.0.git@179f7467ce274cce13c91ccc212b9e2212823718", # hydra
"git+https://github.com/sara-nl/hydra-2.0.git@179f7467ce274cce13c91ccc212b9e2212823718#egg=hydra-optuna-sweeper&subdirectory=plugins/hydra_optuna_sweeper", # hydra_optuna_sweeper
"git+https://github.com/sara-nl/hydra-2.0.git@179f7467ce274cce13c91ccc212b9e2212823718#egg=hydra-submitit-launcher&subdirectory=plugins/hydra_submitit_launcher", # hydra_submitit_launcher
"albumentations>=1.1.0",
"h5py>=3.6.0",
"matplotlib>=3.5.2",
]
requires-python = ">=3.9,<3.11" # scipy doesn't support 3.11 yet
license = {text = "MIT"}
[project.urls]
Homepage = "https://github.com/sara-nl/2D-VQ-AE-2"
[project.optional-dependencies]
[build-system]
requires = ["pdm-pep517"]
build-backend = "pdm.pep517.api"
[[tool.pdm.source]]
url = "https://download.pytorch.org/whl/cu115"
name = "torch-cu115"
[tool.pdm.dev-dependencies]
dev = [
"rich>=12.4.1",
]