-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
44 lines (40 loc) · 917 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
40
41
42
43
44
[project]
name = "dlboost"
version = "0.1.0"
description = "Add your description here"
authors = [
{ name = "Chunxu Guo", email = "chunxu@wustl.edu" }
]
dependencies = [
"torch>=2.3.0",
"scipy>=1.13.0",
"numpy>=1.26.4",
"einops>=0.8.0",
"monai>=1.3.0",
"lightning>=2.2.3",
"torchopt>=0.7.3",
"wandb>=0.16.6",
"xarray[complete]>=2024.3.0",
"plum-dispatch>=2.3.5",
"icecream>=2.1.3",
"jaxtyping>=0.2.28",
"beartype>=0.18.5",
"scikit-learn>=1.4.2",
"rich>=13.7.1",
"einx>=0.2.2",
"dask[distributed]>=2024.4.2",
"torch-dct>=0.1.6",
"imageio>=2.34.1",
]
readme = "README.md"
requires-python = ">= 3.11"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.rye]
managed = true
dev-dependencies = []
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/dlboost"]