-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (28 loc) · 799 Bytes
/
pyproject.toml
File metadata and controls
31 lines (28 loc) · 799 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "ocpa"
version = "0.1.3"
description = "OpenControlPlane for Agentic AI"
readme = "README.md"
requires-python = ">=3.12"
authors = [{ name = "OCPA Maintainers" }]
dependencies = [
"requests>=2.31.0",
"PyYAML>=6.0.0",
"opentelemetry-api>=1.22.0",
"opentelemetry-sdk>=1.22.0",
"opentelemetry-exporter-otlp>=1.22.0",
"fastapi>=0.110.0",
"uvicorn[standard]>=0.23.0",
"prometheus-client>=0.20.0",
"typer>=0.12.0",
"httpx>=0.27.0",
"PyJWT>=2.8.0"
]
[project.optional-dependencies]
dev = ["pytest>=7.4.0", "pytest-cov>=4.1.0", "ruff>=0.6.0", "pip-audit>=2.7.3", "cyclonedx-bom>=7.2.0"]
[tool.ruff]
line-length = 140
src = ["ocpa", "example_app", "tests"]