Spaces:
Sleeping
Sleeping
| [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" | |