23 lines
418 B
TOML
23 lines
418 B
TOML
[project]
|
|
name = "controlnet"
|
|
version = "0.1.0"
|
|
requires-python = ">=3.10"
|
|
readme = "README.md"
|
|
dependencies = [
|
|
"accelerate",
|
|
"opencv-python",
|
|
"pillow",
|
|
"diffusers<0.39",
|
|
"numpy",
|
|
"torch", # this will use the version defined in the uv workspace
|
|
"transformers",
|
|
"rerun-sdk",
|
|
]
|
|
|
|
[project.scripts]
|
|
controlnet = "controlnet:main"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|