setup.py 792 B

1234567891011121314151617181920212223242526
  1. from setuptools import setup
  2. with open("README.md", "r", encoding="utf-8") as fh:
  3. long_description = fh.read()
  4. setup(
  5. name="dify-client",
  6. version="0.1.12",
  7. author="Dify",
  8. author_email="hello@dify.ai",
  9. description="A package for interacting with the Dify Service-API",
  10. long_description=long_description,
  11. long_description_content_type="text/markdown",
  12. url="https://github.com/langgenius/dify",
  13. license="MIT",
  14. packages=["dify_client"],
  15. classifiers=[
  16. "Programming Language :: Python :: 3",
  17. "License :: OSI Approved :: MIT License",
  18. "Operating System :: OS Independent",
  19. ],
  20. python_requires=">=3.6",
  21. install_requires=["requests"],
  22. keywords="dify nlp ai language-processing",
  23. include_package_data=True,
  24. )