-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (52 loc) · 1.58 KB
/
pyproject.toml
File metadata and controls
59 lines (52 loc) · 1.58 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
[tool.poetry]
name = "highflame"
version = "2.0.0"
description = "Python SDK for Highflame - Enterprise-Scale LLM Gateway"
authors = ["Sharath Rajasekar <sharath@highflame.com>"]
readme = "README.md"
license = "Apache-2.0"
homepage = "https://highflame.com"
repository = "https://github.com/highflame-ai/highflame-python"
keywords = ["llm", "gateway", "ai", "api", "routing"]
packages = [
{ include = "highflame_cli" },
{ include = "highflame" },
]
[tool.poetry.scripts]
highflame-cli = "highflame_cli.cli:main"
[tool.poetry.dependencies]
python = "^3.9"
httpx = "^0.27.2"
pydantic = "^2.9.2"
requests = "^2.32.3"
urllib3 = "^2.6.3"
jmespath = "^1.0.1"
jsonpath-ng = "^1.7.0"
# OpenTelemetry Dependencies
opentelemetry-api = "^1.32.1"
opentelemetry-sdk = "^1.32.1"
opentelemetry-semantic-conventions = "^0.53b1"
opentelemetry-exporter-otlp-proto-http = "^1.32.1"
opentelemetry-exporter-otlp-proto-grpc = "^1.32.1"
# opentelemetry-instrumentation = "^0.53b1"
# opentelemetry-instrumentation-botocore = "^0.53b1"
# opentelemetry-util-http = "^0.53b1"
# opentelemetry-instrumentation-asgi = "^0.53b1"
# opentelemetry-instrumentation-fastapi = "^0.53b1"
[tool.poetry.group.test.dependencies]
pytest = "^8.3.5"
pytest-httpx = "^0.32.0"
pytest-asyncio = "^0.21.0"
pytest-mock = "^3.10.0"
[tool.poetry.group.dev.dependencies]
black = "24.3.0"
flake8 = "^7.3.0"
pre-commit = "^3.3.1"
mkdocs = "^1.4.3"
mkdocstrings = {version = "0.21.2", extras = ["python"]}
python-dotenv = "^1.0.0"
mkdocs-material = "^9.6.11"
isort = "^5.13.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"