-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (59 loc) · 1.52 KB
/
pyproject.toml
File metadata and controls
63 lines (59 loc) · 1.52 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
[build-system]
requires = ["uv_build>=0.9.18,<0.10.0"]
build-backend = "uv_build"
[tool.uv.build-backend]
module-name = "aws_lambda_opentelemetry"
module-root = ""
[project]
name = "aws-lambda-opentelemetry"
version = "0.1.0"
description = "AWS Lambda OpenTelemetry tools for Python"
readme = "README.md"
requires-python = ">=3.10"
keywords = ["opentelemetry", "lambda", "aws", "aws lambda", "faas"]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Rust",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
]
dependencies = [
"aws-lambda-powertools>=3.0.0,<4.0.0",
"opentelemetry-api>=1.0.0,<2.0",
"opentelemetry-exporter-otlp-proto-common>=1.0.0,<2.0",
"opentelemetry-sdk>=1.0.0,<2.0",
"uuid-utils>=0.12.0,<1.0",
]
[dependency-groups]
dev = [
"boto3>=1.42.14",
"moto>=5.1.18",
"pytest>=9.0.2",
"pytest-cov>=7.0.0",
"ruff>=0.14.9",
]
docs = [
"mkdocs==1.6.1",
"mkdocs-material==9.6.14",
"mkdocstrings[python]==0.26.1",
]
[tool.ruff.lint]
select = [
"E",
"W",
"F",
"I",
"C4",
"UP",
]
[tool.ruff.lint.pycodestyle]
max-line-length = 120