File size: 566 Bytes
a5f8ebc
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
[project]
name = "lemon"
version = "0.1.0"
description = "LEMON: a foundation model for single-cell histology images."
readme = "README.md"
requires-python = ">=3.11,<3.13"
dependencies = [
  "torch==2.7.1",
  "torchvision==0.22.1",
  "timm",
]

[tool.uv]
package = false

[[tool.uv.index]]
name = "pytorch-gpu-src"
url = "https://download.pytorch.org/whl/cu126"
explicit = true

[tool.uv.sources]
torch = [
  { index = "pytorch-gpu-src", marker = "sys_platform == 'linux'" },
]
torchvision = [
  { index = "pytorch-gpu-src", marker = "sys_platform == 'linux'" },
]