Spaces:
Sleeping
Sleeping
File size: 740 Bytes
1bed5e4 68c2b4d 1bed5e4 e4852bb 1bed5e4 acb83b5 e4852bb 1bed5e4 e4852bb acb83b5 | 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 | [project]
name = "bitcheck-ai-backend"
version = "0.1.0"
description = "BitCheck image verification backend"
requires-python = ">=3.11"
dependencies = [
"fastapi>=0.115.0",
"uvicorn[standard]>=0.30.0",
"python-multipart>=0.0.9",
"pydantic>=2.7.0",
"pydantic-settings>=2.3.0",
"python-dotenv>=1.0.1",
"torch==2.11.0+cpu",
"torchvision==0.26.0+cpu",
"Pillow>=10.3.0",
"opencv-python-headless>=4.9.0.80",
"numpy>=1.26.0",
"pytesseract>=0.3.10",
"rapidfuzz>=3.9.0",
"exifread>=3.0.0",
]
[tool.uv]
package = false
[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
|