File size: 637 Bytes
e8b8483 | 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 | [build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "zero-parameter-classifier"
version = "0.0.0"
description = "Image-level person classification on EUPE-ViT-B features with no free parameters"
requires-python = ">=3.9"
dependencies = [
"torch>=2.0",
"numpy",
"pillow",
"transformers>=4.40",
"huggingface-hub",
"pycocotools",
]
[project.optional-dependencies]
dev = ["pytest>=7"]
synth = ["nosis"]
[tool.setuptools]
packages = ["common"]
py-modules = ["infer", "cache", "choose", "verify", "rtl_gen", "synth"]
[tool.pytest.ini_options]
testpaths = ["tests"]
|