-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (46 loc) · 1.12 KB
/
pyproject.toml
File metadata and controls
50 lines (46 loc) · 1.12 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
[project]
name = "dl"
version = "0.1.0"
description = "🐳 Guideline to Deep Learning with PyTorch and Computer Vision"
readme = "README.md"
authors = [{ name = "Hinsun", email = "[email protected]" }]
requires-python = ">=3.13"
dependencies = [
"hatchling>=1.27.0",
"matplotlib>=3.10.3",
"numpy>=2.3.0",
"opencv-contrib-python>=4.11.0.86",
"opencv-python>=4.11.0.86",
"pandas>=2.3.0",
"pycocotools>=2.0.10",
"scikit-image>=0.25.2",
"torch>=2.7.1",
"torchinfo>=1.8.0",
"torchsummary>=1.5.1",
"torchview>=0.2.7",
"torchvision>=0.22.1",
]
[project.scripts]
dl = "dl.main:main"
benchmark = "benchmark:main"
training = "training:main"
inference = "inference:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv.workspace]
members = [
"packages/core",
"packages/nn",
"packages/backend",
"packages/models",
"packages/cnn",
"packages/loader",
]
[tool.uv.sources]
core = { workspace = true }
nn = { workspace = true }
backend = { workspace = true }
models = { workspace = true }
cnn = { workspace = true }
loader = { workspace = true }