-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
78 lines (73 loc) · 2.03 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[project]
name = "sihl"
version = "0.0.3.post5"
description = "Simple Image Heads and Layers"
authors = [{ name = "Jon", email = "[email protected]" }]
dependencies = [
"einops>=0.8.0",
"faster-coco-eval>=1.6.5",
"torch>=2.5.1",
"torchmetrics>=1.6.0",
"torchvision>=0.20.1",
"matplotlib>=3.10.0",
]
readme = "README.md"
license = "Apache-2.0"
requires-python = ">= 3.9"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
[project.urls]
Homepage = "https://github.com/jonregef/sihl"
Repository = "https://github.com/jonregef/sihl"
[project.optional-dependencies]
timm = ["timm>=1.0.12"]
lightning = ["lightning>=2.4.0"]
onnx = ["onnx>=1.17.0", "onnxruntime>=1.19.2"]
all = [
"lightning>=2.4.0",
"onnx>=1.17.0",
"onnxruntime>=1.19.2",
"timm>=1.0.12",
]
[build-system]
# https://github.com/astral-sh/rye/issues/1446#issuecomment-2545154562
requires = ["hatchling==1.26.3"]
build-backend = "hatchling.build"
[tool.rye]
managed = true
dev-dependencies = [
"coverage>=7.6.9",
"einops[torch]>=0.8.0",
"faster-coco-eval>=1.6.5",
"ipython>=8.18.1",
"kaggle>=1.6.17",
"lightning>=2.4.0",
"matplotlib>=3.9.3",
"onnx>=1.17.0",
"onnxruntime>=1.19.2",
"onnxscript>=0.1.0.dev20241219",
"pycocotools>=2.0.8",
"pyinstrument>=5.0.0",
"pytest>=8.3.4",
"rich>=13.9.4",
"tensorboard>=2.18.0",
"timm>=1.0.12",
"torch>=2.5.1",
"torchinfo>=1.8.0",
"torchmetrics>=1.6.0",
"torchvision>=0.20.1",
"types-pyyaml>=6.0.12.20240917",
]
[tool.hatch.build.targets.sdist]
exclude = ["examples/data", "examples/logs"]