Spaces:
Sleeping
Sleeping
File size: 515 Bytes
2f21b40 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | [build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "background-remover"
version = "0.1.0"
description = "Streamlit desktop app for background removal and color replacement"
readme = "README.md"
requires-python = ">=3.11"
license = { file = "LICENSE" }
dependencies = [
"streamlit>=1.30",
"rembg>=2.0.50",
"pillow>=10.0",
"numpy>=1.24",
"onnxruntime>=1.17" # CPU runtime (safe, stable)
]
[tool.setuptools]
packages = [] |