Spaces:
Sleeping
Sleeping
File size: 833 Bytes
a783939 | 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 35 36 37 38 39 40 41 42 | [project]
name = "fraud-detector-api"
version = "1.0.0"
description = "AP27510301 anti-fraud API for Kazakhstan (RU/KZ)"
requires-python = ">=3.11"
dependencies = [
"fastapi==0.115.0",
"uvicorn[standard]==0.30.6",
"pydantic==2.9.2",
"pydantic-settings==2.5.2",
"sqlalchemy==2.0.35",
"python-multipart==0.0.12",
"faster-whisper==1.0.3",
"scikit-learn==1.5.2",
"scipy==1.14.1",
"joblib==1.4.2",
"numpy==1.26.4",
"pandas==2.2.3",
]
[project.optional-dependencies]
dev = [
"pytest==8.3.3",
"httpx==0.27.2",
"ruff==0.6.9",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["app"]
[tool.pytest.ini_options]
pythonpath = ["."]
testpaths = ["tests"]
[tool.ruff]
line-length = 100
target-version = "py311"
|