-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (31 loc) · 833 Bytes
/
pyproject.toml
File metadata and controls
36 lines (31 loc) · 833 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
[tool.poetry]
name = "tracely"
version = "0.2.12"
description = "Tracing tools"
authors = ["Emeli Dral <emeli.dral@gmail.com>"]
license = "Apache-2.0"
readme = "README.md"
packages = [{include = "tracely", from = "tracely/src"}]
[tool.poetry.dependencies]
python = "^3.9"
opentelemetry-api = ">=1.25.0"
opentelemetry-sdk = ">=1.25.0"
opentelemetry-proto = ">=1.25.0"
opentelemetry-exporter-otlp-proto-grpc = ">=1.25.0"
opentelemetry-exporter-otlp-proto-http = ">=1.25.0"
requests = ">=2.32.0"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.3.3"
ruff = "^0.5.4"
mypy = "^1.16.1"
pytest = "^8.4.1"
pytest-asyncio = "^1.2.0"
types-requests = "^2.32.4.20250611"
openai = "1.93.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 120
indent-width = 4
[tool.flakje]