File size: 531 Bytes
a6a9a80 |
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 |
[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"
|