mirror of
https://github.com/bytedance/deer-flow.git
synced 2026-09-25 14:06:18 +00:00
* feat(plugins): add full-stack contributions and bookmarks example * ci(plugins): provision bookmark gateway for browser tests * fix(plugins): authenticate module downloads through configured backend * fix(plugins): isolate contributions and localize extension UI * fix(plugins): preserve bookmark agent routing and contain async callbacks * fix(plugins): pin durable batch workers to app extension snapshots
19 lines
546 B
TOML
19 lines
546 B
TOML
[project]
|
|
name = "deerflow-extension-bookmarks"
|
|
version = "0.1.0"
|
|
description = "Pi-inspired conversation bookmarks for the DeerFlow full-stack plugin API"
|
|
requires-python = ">=3.12"
|
|
license = "MIT"
|
|
license-files = ["THIRD_PARTY_NOTICES.md"]
|
|
dependencies = ["deerflow-extension-api>=0.2.2,<0.3"]
|
|
|
|
[project.entry-points."deerflow.extensions"]
|
|
bookmarks = "deerflow_extension_bookmarks:install"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["deerflow_extension_bookmarks"]
|