-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
80 lines (72 loc) · 2.09 KB
/
Copy pathpyproject.toml
File metadata and controls
80 lines (72 loc) · 2.09 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
[build-system]
requires = ["setuptools>=80", "setuptools-scm>=10.0.5"]
build-backend = "setuptools.build_meta"
[project]
name = "openfox"
dynamic = ["version"]
description = "Self-hosted personal AI assistant with Feishu integration, a built-in web console, and LiteLLM multi-model support."
readme = "README.md"
requires-python = ">=3.12"
license = "Apache-2.0"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
"Typing :: Typed",
]
dependencies = [
"agno[scheduler]>=2.5.17",
"aiosqlite>=0.22.1",
"anthropic>=0.89.0",
"arxiv>=2.4.1",
"asyncer>=0.0.17",
"baidusearch>=1.0.3",
"chromadb>=1.0.0",
"crawl4ai>=0.8.6",
"ddgs>=9.12.0",
"docker>=7.1.0",
"docling>=2.88.0",
"fastapi[standard]>=0.135.1",
"greenlet>=3.3.2",
"httpx>=0.28.1",
"json-repair>=0.58.5",
"lark-oapi>=1.5.3",
"litellm>=1.82.6",
"mcp>=1.26.0",
"openilink-sdk-python",
"openinference-instrumentation-agno>=0.1.30",
"opentelemetry-api>=1.41.0",
"opentelemetry-sdk>=1.41.0",
"playwright>=1.58.0",
"pypdf>=6.9.2",
"pyyaml>=6.0.2",
"requests>=2.32.5",
"sqlalchemy>=2.0.48",
"typer>=0.21.2",
"websockets>=12",
"wikipedia>=1.4.0",
"youtube-transcript-api>=1.2.4",
]
[project.urls]
Homepage = "https://github.com/InfernalAzazel/openfox"
Repository = "https://github.com/InfernalAzazel/openfox"
Issues = "https://github.com/InfernalAzazel/openfox/issues"
[dependency-groups]
dev = [
"setuptools-scm>=10.0.5",
]
[tool.setuptools_scm]
version_file = "openfox/_version.py"
[tool.setuptools]
packages = ["openfox"]
include-package-data = true
[tool.setuptools.package-data]
openfox = ["skills/**/*.md", "static/web/**/*"]
[tool.hatch.build.targets.wheel]
packages = ["openfox"]
[tool.uv.sources]
openilink-sdk-python = { git = "https://github.com/openilink/openilink-sdk-python.git" }