Files
dify-plugin-sdks/python/pyproject.toml
T
Harry d6fa7bfb7e chore: bump dify_plugin version to 0.6.0b7 and update trigger event handling
- Updated the version in pyproject.toml from 0.6.0b6 to 0.6.0b7.
- Renamed trigger-related methods and classes for clarity, changing invoke_trigger to invoke_trigger_event and updating associated request and response classes.
- Adjusted event handling in the GithubTrigger class to improve event dispatching.

These changes ensure the plugin is up-to-date and enhance the clarity and functionality of event handling.
2025-10-10 19:31:28 +08:00

41 lines
891 B
TOML

[project]
name = "dify_plugin"
version = "0.6.0b7"
description = "Dify Plugin SDK"
authors = [{ name = "langgenius", email = "hello@dify.ai" }]
dependencies = [
"Flask~=3.0.3",
"Werkzeug~=3.0.3",
"dpkt~=1.9.8",
"gevent~=25.5.1",
"httpx~=0.28.1",
"pydantic_settings>=2.5.0,<3.0.0",
"pydantic>=2.8.2",
"pyyaml~=6.0.1",
"requests~=2.32.3",
"socksio==1.0.0",
"tiktoken~=0.8.0",
"yarl>=1.9.4,<2.0",
"packaging>=25.0",
]
requires-python = ">=3.11"
readme = "README.md"
license = { text = "Apache2.0" }
keywords = ["dify", "plugin", "sdk"]
[project.urls]
Homepage = "https://github.com/langgenius/dify-plugin-sdks.git"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm]
distribution = true
[dependency-groups]
example-lark-trigger = [
"lark-oapi>=1.4.23",
]
lint = ["ruff>=0.11.2"]
test = ["pytest>=8.3.5"]