-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (45 loc) · 1.93 KB
/
Copy pathpyproject.toml
File metadata and controls
52 lines (45 loc) · 1.93 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "hermes-stepfun-imagegen"
version = "0.3.0"
description = "StepFun image generation backend for Hermes Agent (step-image-edit-2, step-2x-large, step-1x-medium). Includes image-gen-chain (StepFun -> MiniMax -> Pollinations fallback). Install: pip install hermes-stepfun-imagegen && hermes-stepfun-setup."
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.11"
authors = [
{name = "lora-sys"},
]
keywords = ["hermes", "hermes-agent", "stepfun", "image-generation", "ai"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = []
[project.urls]
Homepage = "https://github.com/lora-sys/hermes-stepfun-imagegen"
Repository = "https://github.com/lora-sys/hermes-stepfun-imagegen"
Issues = "https://github.com/lora-sys/hermes-stepfun-imagegen/issues"
[project.entry-points."hermes_agent.plugins"]
stepfun-imggen = "hermes_stepfun_imagegen"
image-gen-chain = "hermes_stepfun_imagegen.chain"
[project.scripts]
# Post-install one-shot helper: registers the entry-point names in
# ~/.hermes/config.yaml so the loader picks them up. See setup.py docstring
# for the why (loader uses key=ep.name for entry-points, so the path-derived
# `image_gen/stepfun` you may see in the bundled layout does NOT match).
hermes-stepfun-setup = "hermes_stepfun_imagegen.setup:main"
[project.optional-dependencies]
setup = ["pyyaml>=6.0"]
test = ["pytest>=7", "pytest-cov", "pyyaml>=6.0"]
[tool.setuptools]
packages.find = {where = ["src"]}
[tool.setuptools.package-data]
"hermes_stepfun_imagegen" = ["plugin.yaml"]
"hermes_stepfun_imagegen.chain" = ["plugin.yaml"]