sms-spam-classification / pyproject.toml
e-hossam96's picture
changed classifier model
e17517b
raw
history blame contribute delete
770 Bytes
[project]
name = "sms-spam-classification"
version = "0.1.0"
description = "Optimized SMS Spam Classification Pipeline"
readme = "README.md"
authors = [
{ name = "e-hossam96", email = "ehh.hossam@gmail.com" }
]
requires-python = ">=3.12.10"
dependencies = [
"accelerate>=1.6.0",
"fastapi>=0.115.12",
"optimum[onnxruntime]==1.24.0",
"torch>=2.7.0",
"transformers<4.49.0",
"uvicorn[standard]>=0.34.2",
]
[tool.uv.sources]
torch = [
{ index = "pytorch-cpu" },
]
[[tool.uv.index]]
name = "pytorch-cpu"
url = "https://download.pytorch.org/whl/cpu"
explicit = true
license = { text = "MIT" }
classifiers = [
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]