makeanime / pyproject.toml
ariG23498's picture
ariG23498 HF staff
Upload folder using huggingface_hub
a6a9a80 verified
raw
history blame contribute delete
531 Bytes
[project]
name = "makeanime"
version = "0.1.0"
description = "A CLI to make anime themed face images"
readme = ".github/README.md"
requires-python = ">=3.10"
dependencies = [
"accelerate>=0.34.0",
"diffusers>=0.30.2",
"fire>=0.6.0",
"gradio>=4.42.0",
"makeanime",
"ruff>=0.6.3",
"torch>=2.4.0",
"transformers>=4.44.2",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv.sources]
makeanime = { workspace = true }
[project.scripts]
makeanime = "makeanime.cli:app"