-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (62 loc) · 1.78 KB
/
pyproject.toml
File metadata and controls
66 lines (62 loc) · 1.78 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "resolvekit-backend"
version = "0.1.0"
description = "Backend service for ResolveKit agent runtime"
readme = "README.md"
requires-python = ">=3.13,<3.14"
license = "AGPL-3.0-only"
license-files = ["LICENSE"]
authors = [
{ name = "ResolveKit contributors" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Framework :: FastAPI",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.13",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
"Topic :: Software Development :: Libraries :: Application Frameworks",
]
dependencies = [
"fastapi>=0.115",
"uvicorn[standard]>=0.30",
"sqlalchemy[asyncio]>=2.0",
"asyncpg>=0.30",
"alembic>=1.14",
"pydantic>=2.10",
"pydantic-settings>=2.6",
"litellm>=1.83.7",
"cryptography>=44.0",
"python-multipart>=0.0.26",
"bcrypt>=4.0",
"PyJWT>=2.10",
"email-validator>=2.3.0",
"httpx>=0.28",
"redis>=5.2",
"markitdown>=0.1.3",
"pypdf>=6.10.2",
"python-docx>=1.1",
"python-pptx>=1.0",
"striprtf>=0.0.29",
"chardet>=5.2,<8",
"packaging>=24.2",
"crawl4ai>=0.8.6",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.24",
"httpx>=0.28",
]
[project.urls]
Homepage = "https://github.com/resolve-kit/resolvekit-backend"
Repository = "https://github.com/resolve-kit/resolvekit-backend"
Issues = "https://github.com/resolve-kit/resolvekit-backend/issues"
Documentation = "https://github.com/resolve-kit/resolvekit-backend/tree/main/docs"
[tool.hatch.build.targets.wheel]
packages = ["agent", "knowledge_bases"]