mirror of
https://github.com/langgenius/dify-plugin-sdks.git
synced 2026-07-22 10:25:23 -04:00
27 lines
731 B
Python
27 lines
731 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name="dify_plugin",
|
|
version="0.0.1-beta1",
|
|
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=["dify_plugin"],
|
|
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",
|
|
"awslambdaric~=2.1.0",
|
|
"yarl~=1.9.4",
|
|
],
|
|
python_requires='>=3.12'
|
|
)
|