-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (40 loc) · 943 Bytes
/
pyproject.toml
File metadata and controls
46 lines (40 loc) · 943 Bytes
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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.backends._legacy:_Backend"
[project]
name = "agentic-core-observability"
version = "1.0.0"
description = "Hybrid agentic workflow with observability, hallucination detection, and semantic memory"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.12"
authors = [
{name = "A Taylor"}
]
dependencies = [
"strands-agents>=0.1.0",
"strands-agents-tools>=0.1.0",
"boto3>=1.35.0",
"botocore>=1.35.0",
"aws-xray-sdk>=2.14.0",
"pydantic>=2.0.0",
"python-dotenv>=1.0.0",
]
[project.optional-dependencies]
cdk = [
"aws-cdk-lib>=2.170.0",
"constructs>=10.0.0",
]
dev = [
"pytest>=8.0.0",
"pytest-cov>=5.0.0",
"ruff>=0.4.0",
]
[project.scripts]
agentic-obs = "src.app:cli"
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]
[tool.ruff]
target-version = "py312"
line-length = 100