-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
45 lines (40 loc) · 951 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
[project]
name = "sdnet"
version = "0.1.0"
description = "Structure detection network."
authors = [{name = "Louis Lac", email = "[email protected]"}]
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
dependencies = [
"numpy>=1.24.2",
"pillow>=9.5.0",
"torch>=2.0.0",
"torchvision>=0.15.1",
"tensorboard>=2.12.1",
"rich>=13.3.3",
"tqdm>=4.65.0",
"xxhash>=3.2.0",
"torch-tb-profiler>=0.4.1",
"click>=8.1.7",
]
[project.optional-dependencies]
conversion = [
"coremltools>=7.0",
]
[dependency-groups]
dev = [
"pytest>=7.4",
"ruff>=0.1.7",
"pre-commit>=3.2",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/sdnet"]
[project.scripts]
train = "sdnet.cli.train:main"
evaluate = "sdnet.cli.evaluate:main"
convert_coreml = "sdnet.cli.convert_coreml:main"
evaluate_coreml = "sdnet.cli.evaluate_coreml:main"