Spaces:
Sleeping
Sleeping
File size: 918 Bytes
871ff87 | 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 30 31 32 33 34 35 36 37 38 39 | [build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "aamcq"
version = "0.1.0"
description = "AestheticMCQ — human-labeled aesthetic similarity MCQ dataset"
requires-python = ">=3.10"
dependencies = [
"fastapi>=0.110",
"uvicorn[standard]>=0.27",
"pyyaml>=6.0",
"pydantic>=2.5",
"numpy>=1.24",
]
[project.optional-dependencies]
test = ["pytest>=8.0", "httpx>=0.26"]
generation = [
# Flux2KleinPipeline currently only ships in the diffusers git dev branch:
# uv pip install git+https://github.com/huggingface/diffusers.git
"diffusers>=0.29",
"torch",
"transformers",
"accelerate>=0.30",
"pillow",
"sentencepiece",
"protobuf",
]
hf = ["datasets>=2.18", "huggingface_hub>=0.20", "pillow"]
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-q"
|