[project] name = "avatar-pipeline" version = "0.1.0" description = "ComfyUI image-to-VRM avatar generation pipeline with TRELLIS + UniRig" requires-python = ">=3.11" license = { text = "MIT" } authors = [{ name = "Davies Tech Labs" }] dependencies = [ # HTTP client for ComfyUI API + MLflow REST "httpx>=0.27.0", # Image handling "Pillow>=10.0.0", ] [project.optional-dependencies] dev = [ "pytest>=8.0.0", "ruff>=0.4.0", ] [project.scripts] avatar-generate = "avatar_pipeline.generate:main" avatar-promote = "avatar_pipeline.promote:main" [build-system] requires = ["hatchling"] build-backend = "hatchling.build" [tool.ruff] line-length = 100 target-version = "py311" [tool.ruff.lint] select = ["E", "F", "W", "I", "UP", "B", "C4", "SIM"] ignore = ["E501"] [tool.ruff.format] quote-style = "double"