-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpyproject.toml
More file actions
91 lines (79 loc) · 2.16 KB
/
pyproject.toml
File metadata and controls
91 lines (79 loc) · 2.16 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
[project]
name = "symbolica-agentica"
version = "0.4.1"
description = "Agentica Python SDK"
requires-python = ">=3.12.0,<3.14.0"
readme = "README.md"
license-files = ["LICENSE"]
dependencies = [
"aiohttp>=3.12.0",
"python-dotenv>=1.0.0",
"fastmcp>=2.10.0,<3.0.0",
"httpx>=0.28.0,<1.0.0",
"websockets>=15.0.0",
"agentica-internal",
# OpenTelemetry for distributed tracing
"opentelemetry-api>=1.20.0",
"opentelemetry-sdk>=1.20.0",
"opentelemetry-exporter-otlp-proto-grpc>=1.20.0",
"opentelemetry-instrumentation-httpx>=0.41b0",
"platformdirs>=4.5.0",
"rich>=13.0.0",
"prompt-toolkit>=3.0.0",
"pydantic>=2.10.0",
"openai>=1.66.0",
]
[project.urls]
Homepage = "https://www.symbolica.ai/agentica"
Issues = "https://github.com/symbolica-ai/agentica-python-sdk/issues"
[project.scripts]
symbolica-agentica = "agentica.__main__:cli"
[dependency-groups]
dev = [
"pytest>=8.4.2",
"pytest-asyncio>=1.2.0",
"pytest-cov>=7.0.0",
"pytest-timeout>=2.4.0",
"respx>=0.22.0",
"ruff>=0.14.5",
"vulture>=2.14",
"pydantic>=2.11.9",
"numpy>=2.3.5",
"pandas>=2.3.3",
]
demos = [
"art>=6.5",
"exa-py>=1.15.6",
"ipynb>=0.5.1",
"jupyter>=1.1.1",
"markdown>=3.9",
"matplotlib>=3.10.6",
"pandas>=2.3.3",
"rich>=14.1.0",
"slack-sdk>=3.36.0",
"validators>=0.35.0",
"xhtml2pdf>=0.2.17",
]
[build-system]
requires = ["setuptools>=80", "wheel", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src", "."]
include = ["agentica*", "demos*"]
[tool.setuptools.package-data]
"*" = ["*.md"]
[tool.uv]
link-mode = "symlink"
[tool.uv.sources]
# agentica-internal comes from PyPI, if you want to build it locally, specify the path here
[tool.pytest.ini_options]
addopts = "--cov=src --cov-report=html"
filterwarnings = [
"ignore:Pickle, copy, and deepcopy support will be removed from itertools:DeprecationWarning",
"ignore:unclosed database in <sqlite3.Connection object at:ResourceWarning",
]
[tool.vulture]
exclude = ["src/agentica/development/", "src/sandbox/build/"]
ignore_names = []
paths = ["src/"]
min_confidence = 80