forked from davecasp/add-thin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
53 lines (46 loc) · 935 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
45
46
47
48
49
50
51
52
53
[build-system]
requires = ["flit_core >=3.7,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "add_thin"
dynamic = ["version", "description"]
authors = [
{name = "David Lüdke", email = "[email protected]"},
]
dependencies = [
# PyTorch etc.
"torch ~= 2.0",
"pytorch-lightning ~= 1.7",
"torchmetrics",
"torchvision",
"einops",
"torchtyping",
# General science & ml
"numpy",
"scipy",
"scikit-learn",
"pandas",
# Plotting & visualization
"matplotlib",
"seaborn",
# hydra & logging
"hydra-core ~= 1.2.0",
"hydra-submitit-launcher",
"wandb ~= 0.13",
# Utilities
"tqdm",
"rich",
"ipython",
"ipdb",
"jupyterlab",
"ipympl",
"typeguard ~= 2.9",
]
requires-python = ">=3.10"
license = {text = "MIT"}
[tool.isort]
profile = "black"
known_third_party = ["wandb"]
[tool.black]
line-length = 80
target-version = ["py310"]