Spaces:
Running
Running
File size: 425 Bytes
2e175db | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | [build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "deepfake-scanner"
version = "0.2.0"
description = "Detect AI-generated and manipulated images via a versioned FastAPI inference service."
requires-python = ">=3.11"
license = { text = "Apache-2.0" }
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-q"
|