-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (36 loc) · 916 Bytes
/
Copy pathpyproject.toml
File metadata and controls
40 lines (36 loc) · 916 Bytes
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
[project]
name = "dinov2_inference"
version = "0.0.1"
description = "A library for efficient computer vision on edge devices."
authors = [
{ name = "Michael Krah", email = "mickra@bu.edu" },
{ name = "Zach Gentile", email = "zgentile@bu.edu" },
{ name = "Alex Lavaee", email = "alavaee@bu.edu" },
]
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"torch",
"timm",
"torchvision",
"Pillow",
"transformers[torch]",
"hf_transfer",
"memory-profiler",
"threadpoolctl",
"gguf",
]
[tool.uv.sources]
torch = [{ index = "pytorch-cpu" }]
torchvision = [{ index = "pytorch-cpu" }]
[[tool.uv.index]]
name = "pytorch-cpu"
url = "https://download.pytorch.org/whl/cpu"
explicit = true
[tool.setuptools.packages.find]
where = ["src"]
include = ["dinov2_inference"]
namespaces = true
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"