forked from Upsonic/Upsonic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
67 lines (55 loc) · 1.31 KB
/
pyproject.toml
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
[project]
name = "upsonic"
version = "0.40.7"
description = "Task oriented AI agent framework for digital workers and vertical AI agents"
readme = "README.md"
authors = [
{ name = "Onur ULUSOY", email = "onur@upsonic.co" }
]
requires-python = ">=3.10"
dependencies = [
"cloudpickle>=3.1.0",
"dill>=0.3.9",
"httpx>=0.27.2",
"pickledb==0.9.2",
"psutil==6.1.1",
"pydantic>=2.10.4",
"rich>=13.9.4",
"sentry-sdk[opentelemetry]>=2.19.2",
"toml>=0.10.2",
"uv>=0.5.20",
"fastapi>=0.115.6",
"mcp[cli]>=1.2.0",
"pydantic-ai==0.0.21",
"python-dotenv>=1.0.1",
"uvicorn>=0.34.0",
"beautifulsoup4>=4.12.3",
"boto3>=1.35.99",
"botocore>=1.35.99",
"google>=3.0.0",
"markitdown>=0.0.1a3",
"matplotlib>=3.10.0",
"pyautogui>=0.9.54",
"python-multipart>=0.0.20",
"requests>=2.32.3",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
default-groups = ["dev"]
[dependency-groups]
dev = [
"mypy>=1.14.1",
"pre-commit>=4.0.1",
"pytest>=8.3.4",
"pytest-asyncio>=0.25.1",
]
[[tool.uv.index]]
name = "pypi"
url = "https://pypi.org/simple/"
publish-url = "https://upload.pypi.org/legacy/"
[[tool.uv.index]]
name = "testpypi"
url = "https://test.pypi.org/simple/"
publish-url = "https://test.pypi.org/legacy/"