TADBot / pyproject.toml
ryefoxlime's picture
updated the python project version
8eb51e6
raw
history blame
1.01 kB
[project]
name = "learninguv"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"ruff>=0.7.3",
"torch==2.5.1+cu124",
"torchvision==0.20.1+cu124",
"torchaudio==2.5.1+cu124",
"huggingface-hub>=0.26.2",
"timm>=1.0.11",
"thop>=0.1.1.post2209072238",
"deepface==0.0.93",
"bitsandbytes>=0.44.1",
"peft>=0.13.2",
"trl>=0.12.1",
"ninja==1.11.1.1",
"numpy>=1.26.4",
]
[tool.uv.sources]
torch = { index = "pytorch" }
torchvision = { index = "pytorch" }
torchaudio = { index = "pytorch" }
deepface = {git = "https://github.com/serengil/deepface", tag="v0.0.93"}
[[tool.uv.index]]
name = "pytorch"
url = "https://download.pytorch.org/whl/cu124"
explicit = true
[dependency-groups]
dev = [
"deepface>=0.0.93",
"numpy<2",
"opencv-python>=4.10.0.84",
"thop>=0.1.1.post2209072238",
"timm>=1.0.11",
"torch>=2.5.1",
"torchaudio>=2.5.1",
"torchvision>=0.20.1",
]