mirror of
https://github.com/langgenius/dify-plugin-sdks.git
synced 2026-07-22 10:25:23 -04:00
29 lines
778 B
Python
29 lines
778 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name="dify_plugin",
|
|
version="0.0.1-beta13",
|
|
author="langgenius",
|
|
long_description_content_type="text/markdown",
|
|
url="https://github.com/langgenius/dify-plugin-sdks.git",
|
|
description="Dify Plugin SDK",
|
|
long_description=open("README.md", encoding="utf-8").read(),
|
|
packages=find_packages(where="."),
|
|
keywords=["dify", "plugin", "sdk"],
|
|
install_requires=[
|
|
"pydantic~=2.8.2",
|
|
"pydantic_settings~=2.3.4",
|
|
"pyyaml~=6.0.1",
|
|
"transformers~=4.42.4",
|
|
"Flask~=3.0.3",
|
|
"gevent~=24.2.1",
|
|
"Werkzeug~=3.0.3",
|
|
"dpkt~=1.9.8",
|
|
"yarl~=1.9.4",
|
|
"httpx~=0.27.0",
|
|
"requests~=2.32.3"
|
|
],
|
|
python_requires='>=3.10'
|
|
)
|
|
|