mirror of
https://github.com/langgenius/dify-plugin-sdks.git
synced 2026-07-22 18:35:29 -04:00
31 lines
860 B
Python
31 lines
860 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name="dify_plugin",
|
|
version="0.0.1-beta38",
|
|
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",
|
|
"pydub~=0.25.1",
|
|
"tiktoken~=0.8.0",
|
|
"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",
|
|
"socksio==1.0.0" # for possible socks5 proxy support
|
|
],
|
|
python_requires='>=3.10'
|
|
)
|
|
|