This repository was archived by the owner on Apr 30, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
79 lines (72 loc) · 2.35 KB
/
Copy pathpyproject.toml
File metadata and controls
79 lines (72 loc) · 2.35 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
[tool.poetry]
name = "overmind"
version = "0.1.40"
description = "Python client for Overmind API"
authors = ["Overmind Ltd"]
readme = "README.md"
packages = [{include = "overmind"}]
homepage = "https://github.com/overmind-core/overmind-python"
repository = "https://github.com/overmind-core/overmind-python"
keywords = ["overmind", "ai", "api", "client", "policy", "enforcement"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
[tool.poetry.dependencies]
python = ">=3.10,<4"
requests = "^2.31.0"
pydantic = "^2.0.0"
rich = "^14.0.0"
opentelemetry-api = "^1.35.0"
opentelemetry-sdk = "^1.35.0"
opentelemetry-exporter-otlp-proto-http = "^1.35.0"
opentelemetry-instrumentation-fastapi = "^0.60b1"
# Dependencies for vendored opentelemetry-instrumentation-openai (patched)
opentelemetry-instrumentation = ">=0.60b1"
opentelemetry-semantic-conventions = ">=0.60b1"
opentelemetry-semantic-conventions-ai = "^0.4.13"
wrapt = "^1.14.0"
typing-extensions = "^4.0.0"
packaging = "^23.0"
# Optional: additional instrumentations for richer traces
opentelemetry-instrumentation-requests = "^0.60b1"
opentelemetry-instrumentation-httpx = "^0.60b1"
opentelemetry-instrumentation-logging = "^0.60b1"
tqdm = "^4.67.3"
overmind-instrumentation-anthropic = "^0.53.0"
overmind-instrumentation-google-generativeai = "^0.53.0"
overmind-instrumentation-agno = "^0.53.0"
overmind-instrumentation-openai = "^0.53.1"
opentelemetry-overmind = "^0.53.0"
[tool.poetry.extras]
full = [
"opentelemetry-instrumentation-requests",
"opentelemetry-instrumentation-httpx",
"opentelemetry-instrumentation-logging",
]
[tool.poetry.group.dev.dependencies]
pytest = "^9.0.3"
ruff = "^0.4.4"
fastapi = "*"
openai = "^2.26.0"
[tool.ruff]
line-length = 120
indent-width = 4
target-version = "py310"
include = ["overmind/**/*.py", "tests/**/*.py"]
preview = true
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"