Spaces:
Sleeping
Sleeping
File size: 548 Bytes
dc3d345 bf27edd dc3d345 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | [build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "nephroscreen"
version = "1.0.0"
description = "Leakage-safe machine-learning pipeline and API for early chronic kidney disease screening."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
[project.optional-dependencies]
analysis = ["shap==0.46.0", "matplotlib==3.9.2", "notebook", "nbformat"]
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
pythonpath = ["src", "."]
testpaths = ["tests"]
|