-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (51 loc) · 1.46 KB
/
pyproject.toml
File metadata and controls
57 lines (51 loc) · 1.46 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "temporal-parseable"
dynamic = ["version"]
description = "Temporal plugin for exporting OpenTelemetry data to Parseable"
readme = "README.md"
requires-python = ">=3.9"
license = "MIT"
authors = [
{ name = "Parseable", email = "hi@parseable.com" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: System :: Monitoring",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"temporalio[opentelemetry]>=1.7.0",
"opentelemetry-sdk>=1.20.0",
"opentelemetry-api>=1.20.0",
"opentelemetry-exporter-otlp-proto-http>=1.20.0",
"pydantic-settings>=2.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-asyncio>=0.21",
"pytest-cov>=4.0",
]
ui = [
"fastapi>=0.100.0",
"uvicorn[standard]>=0.20.0",
]
[project.scripts]
temporal-parseable-ui = "temporal_parseable.ui.app:main"
[tool.hatch.version]
path = "src/temporal_parseable/_version.py"
[tool.hatch.build.targets.wheel]
packages = ["src/temporal_parseable"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]