| [build-system] | |
| requires = ["setuptools>=68", "wheel"] | |
| build-backend = "setuptools.build_meta" | |
| [project] | |
| name = "fetiai-v1-phiusiil-binclf-knn-scratch-500k" | |
| version = "1.0.0" | |
| description = "KNN (from scratch) for PhiUSIIL phishing URL classification, served over HTTP" | |
| readme = "README.md" | |
| requires-python = ">=3.10" | |
| license = { text = "MIT" } | |
| authors = [ | |
| { name = "Kelompok 16 ITB" }, | |
| ] | |
| # Runtime dependencies are pinned in requirements.txt. This list carries only the lower | |
| # bounds the code actually depends on. | |
| dependencies = [ | |
| "fastapi>=0.110", | |
| "numpy>=1.26", | |
| "pandas>=2.1", | |
| "pydantic>=2.6", | |
| "uvicorn>=0.27" | |
| ] | |
| [tool.setuptools] | |
| packages = ["phiusiil", "phiusiil.features", "phiusiil.models", "phiusiil.preprocess", "server"] | |
| [tool.pytest.ini_options] | |
| pythonpath = ["."] | |
| testpaths = ["tests"] | |