-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (27 loc) · 908 Bytes
/
Copy pathpyproject.toml
File metadata and controls
31 lines (27 loc) · 908 Bytes
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
28
29
30
31
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "imageforge"
version = "0.1.0"
description = "Local AI image-generation service — HTTP API + MCP server"
requires-python = ">=3.11"
dependencies = [
"fastapi",
"uvicorn[standard]",
"mcp",
"pydantic>=2.0",
"pydantic-settings>=2.0",
# Heavy deps (diffusers torch transformers pillow accelerate) are
# pre-installed in the target venv — do not pin here.
]
[project.optional-dependencies]
# Desktop console (pywebview shell). Install with: pip install -e ".[console]"
console = ["pywebview>=5.0", "huggingface_hub>=0.20", "psutil"]
[project.scripts]
imageforge-api = "imageforge.api.server:main"
imageforge-mcp = "imageforge.mcp.server:main"
imageforge-console = "imageforge.console.app:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["imageforge*"]