KR_API / pyproject.toml
kauabarros-24
Ai api
598f7ca
raw
history blame contribute delete
464 Bytes
[project]
name = "KR_API"
version = "0.1.0"
description = "Default template for PDM package"
authors = [
{name = "kauabarros-24", email = "[email protected]"},
]
dependencies = [
"transformers>=4.46.0",
"fastapi>=0.115.3",
"uvicorn>=0.32.0",
"torch>=2.5.0",
]
requires-python = "==3.11.*"
readme = "README.md"
license = {text = "MIT"}
[tool.pdm]
distribution = false
[tool.pdm.scripts]
fast = "uvicorn src.kr_api.main:app --reload"