-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpyproject.toml
More file actions
82 lines (70 loc) · 2.28 KB
/
Copy pathpyproject.toml
File metadata and controls
82 lines (70 loc) · 2.28 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
80
81
82
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "aws-durable-execution-sdk-python-otel"
dynamic = ["version"]
description = 'OpenTelemetry instrumentation for AWS Durable Execution SDK for Python'
readme = "README.md"
requires-python = ">=3.11"
license = "Apache-2.0"
keywords = ["opentelemetry", "tracing", "observability", "durable-execution"]
authors = [{ name = "AWS durable-execution-dev", email = "durable-execution-dev@amazon.com" }]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = [
"aws-durable-execution-sdk-python>=1.5.0",
"opentelemetry-api>=1.20.0",
"opentelemetry-sdk>=1.20.0",
]
[project.urls]
Documentation = "https://github.com/aws/aws-durable-execution-sdk-python#readme"
Issues = "https://github.com/aws/aws-durable-execution-sdk-python/issues"
Source = "https://github.com/aws/aws-durable-execution-sdk-python"
[tool.hatch.build.targets.wheel]
packages = ["src/aws_durable_execution_sdk_python_otel"]
[tool.hatch.version]
path = "src/aws_durable_execution_sdk_python_otel/__about__.py"
[tool.hatch.publish.index]
disable = true
[tool.coverage.run]
source_pkgs = ["aws_durable_execution_sdk_python_otel"]
branch = true
parallel = true
omit = ["src/aws_durable_execution_sdk_python_otel/__about__.py"]
[tool.coverage.paths]
aws_durable_execution_sdk_python_otel = [
"src/aws_durable_execution_sdk_python_otel",
"*/aws-durable-execution-sdk-python-otel/src/aws_durable_execution_sdk_python_otel",
]
[tool.coverage.report]
exclude_lines = ["no cov", "if __name__ == .__main__.:", "if TYPE_CHECKING:"]
[tool.ruff]
line-length = 88
target-version = "py311"
[tool.ruff.lint]
preview = true
select = ["TID252"]
[tool.ruff.lint.isort]
known-first-party = ["aws_durable_execution_sdk_python_otel"]
force-single-line = false
lines-after-imports = 2
[tool.ruff.lint.per-file-ignores]
"tests/**" = [
"ARG001",
"ARG002",
"ARG005",
"S101",
"PLR2004",
"PLR6301",
"SIM117",
"TRY301",
]