forked from haoyuhu/dify-client-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (37 loc) · 990 Bytes
/
pyproject.toml
File metadata and controls
42 lines (37 loc) · 990 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "dify-client-python"
version = "1.0.2"
authors = [
{ name = "haoyuhu", email = "im@huhaoyu.com" },
]
description = "A package for interacting with the Dify Service-API"
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
keywords = ["dify", "nlp", "ai", "language-processing"]
dependencies = [
"httpx",
"httpx-sse",
"pydantic",
"StrEnum",
]
[project.urls]
Homepage = "https://github.com/haoyuhu/dify-client-python"
Repository = "https://github.com/haoyuhu/dify-client-python"
[tool.setuptools.packages]
find = { where = ["."], include = ["dify_client*"] }
[tool.setuptools.package-data]
dify_client = ["*.py"]
[dependency-groups]
dev = [
"pytest>=8.3.5",
"ruff>=0.15.4",
]