-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
110 lines (93 loc) · 2.39 KB
/
pyproject.toml
File metadata and controls
110 lines (93 loc) · 2.39 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "flowllm"
dynamic = ["version"]
description = "FlowLLM: Simplifying LLM-based HTTP/MCP Service Development"
authors = [
{ name = "jinli.yl", email = "jinli.yl@alibaba-inc.com" },
]
license = {file = "LICENSE"}
readme = "README.md"
keywords = ["llm", "ai", "flow", "framework", "openai", "chatgpt", "language-model", "mcp", "http"]
requires-python = ">=3.10"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Typing :: Typed",
]
dependencies = [
"dashscope>=1.13.0",
"fastapi>=0.104.0",
"fastmcp>=0.1.0",
"httpx>=0.25.0",
"loguru>=0.7.0",
"numpy>=1.24.0",
"pandas>=2.0.0",
"openai>=1.3.0",
"pydantic>=2.0.0",
"PyYAML>=6.0.0",
"requests>=2.31.0",
"tqdm>=4.66.0",
"urllib3>=2.0.0",
"uvicorn[standard]>=0.23.0",
"pyfiglet>=0.8.0",
"rich>=13.5.0",
"pathspec>=0.12.1",
"litellm>=1.0.0",
"tavily-python>=0.2.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.4.2",
"pytest_asyncio>=1.2.0",
"pre-commit",
"mkdocs-shadcn",
"pipreqs",
]
reme = [
"elasticsearch>=8.10.0",
"chromadb>=0.4.0",
"qdrant_client>=1.15.1",
"pgvector>=0.4.2"
]
fin = [
"akshare>=1.9.0",
"crawl4ai>=0.7.4",
]
token = [
# "modelscope>=1.10.0",
# "diffusers>=0.21.0",
# "peft>=0.6.0",
"transformers>=4.35.0",
"tiktoken>=0.5.0",
]
skill = [
]
full = [
"flowllm[dev,reme,fin,token,skill]",
]
[tool.setuptools.packages.find]
where = ["."]
include = ["flowllm*"]
[tool.setuptools.package-data]
flowllm = [
"**/*.yaml",
]
[tool.setuptools.dynamic]
version = {attr = "flowllm.__version__"}
[project.urls]
Homepage = "https://github.com/flowllm-ai/flowllm"
Documentation = "https://flowllm-ai.github.io/flowllm/"
Repository = "https://github.com/flowllm-ai/flowllm"
[project.scripts]
flowllm = "flowllm.main:main"