Spaces:
Sleeping
Sleeping
File size: 663 Bytes
67c8aca | 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 | [build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "loan-prediction-system"
version = "0.1.0"
description = "Enterprise Loan AI Dashboard with Deterministic ML and LLM Advisor"
readme = "README.md"
requires-python = ">=3.11"
authors = [
{ name = "Siddharaj Shirke" },
]
license = { text = "MIT" }
dependencies = [
"fastapi>=0.100.0",
"uvicorn>=0.23.0",
"pydantic>=2.0.0",
"sqlalchemy>=2.0.0",
"openai>=1.0.0",
"scikit-learn>=1.2.0",
"pandas>=2.0.0",
"numpy>=1.24.0",
"python-dotenv>=1.0.0",
"huggingface_hub>=0.19.0",
]
[tool.hatch.build.targets.wheel]
packages = ["backend"]
|