-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpyproject.toml
More file actions
79 lines (65 loc) · 2.6 KB
/
Copy pathpyproject.toml
File metadata and controls
79 lines (65 loc) · 2.6 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "aws-durable-execution-sdk-python-insight"
dynamic = ["version"]
description = 'Workflow Insight instrumentation plugin for the AWS Durable Execution SDK for Python'
readme = "README.md"
requires-python = ">=3.11"
license = "Apache-2.0"
keywords = ["observability", "workflow-insight", "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",
]
dependencies = [
# >=1.8.0: first release carrying the plugin invocation-hook fields
# (InvocationInfo.execution_input / InvocationEndInfo.execution_result).
"aws-durable-execution-sdk-python>=1.8.0",
]
[project.optional-dependencies]
# boto3 is provided by the Lambda runtime; declared as an extra for local dev
# (e.g. the S3Exporter) without vendoring it into deployments.
s3 = ["boto3>=1.26.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.sdist.force-include]
"../../LICENSE" = "LICENSE"
"../../NOTICE" = "NOTICE"
[tool.hatch.build.targets.wheel]
packages = ["src/aws_durable_execution_sdk_python_insight"]
[tool.hatch.build.targets.wheel.force-include]
"../../LICENSE" = "aws_durable_execution_sdk_python_insight/LICENSE"
"../../NOTICE" = "aws_durable_execution_sdk_python_insight/NOTICE"
[tool.hatch.version]
path = "src/aws_durable_execution_sdk_python_insight/__about__.py"
[tool.hatch.publish.index]
disable = true
[tool.coverage.run]
source_pkgs = ["aws_durable_execution_sdk_python_insight"]
branch = true
parallel = true
omit = ["src/aws_durable_execution_sdk_python_insight/__about__.py"]
[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 = ["E4", "E7", "E9", "F", "TID252"]
[tool.ruff.lint.isort]
known-first-party = ["aws_durable_execution_sdk_python_insight"]
force-single-line = false
lines-after-imports = 2
[tool.ruff.lint.per-file-ignores]
"tests/**" = ["ARG001", "ARG002", "ARG005", "S101", "PLR2004", "PLR6301", "SIM117", "TRY301"]