-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (29 loc) · 874 Bytes
/
pyproject.toml
File metadata and controls
32 lines (29 loc) · 874 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
[tool.poetry]
name = "clearcut"
version = "0.2.2-post0"
description = "A straightforward and lightweight logging and tracing library"
authors = ["Austin Howard <austin@tangibleintelligence.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/tangibleintelligence/clearcut"
repository = "https://github.com/tangibleintelligence/clearcut"
keywords = [
"logging",
"tracing",
"opentelemetry"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers"
]
[tool.poetry.dependencies]
python = "^3.6"
opentelemetry-api = "^1.11.1"
opentelemetry-sdk = "^1.11.1"
opentelemetry-exporter-otlp-proto-http = "^1.11.1"
opentelemetry-instrumentation-logging = "^0.30b1"
more-itertools = "^8.13.0"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"