Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,34 @@ name = "datadog_lambda"
version = "8.121.0.dev0"
description = "The Datadog AWS Lambda Library"
authors = ["Datadog, Inc. <dev@datadoghq.com>"]

[project]
name = "datadog_lambda"
version = "8.121.0.dev0"
description = "The Datadog AWS Lambda Library"
authors = [{ name = "Datadog, Inc.", email = "dev@datadoghq.com" }]
license = "Apache-2.0"
readme = "README.md"
requires-python = ">=3.8.0,<4"
repository = "https://github.com/DataDog/datadog-lambda-python"
keywords = [
"datadog",
"aws",
"lambda",
"layer",
]
dependencies = [
"datadog>=0.51.0,<1.0.0",
"wrapt>=1.11.2,<2",
"ddtrace>=3.19.1,<4; python_version>='3.9.0' and python_version < '3.10'",
"ddtrace>=4.0.0,<5; python_version>='3.10.0'",
"ujson>=5.9.0",
]
packages = [
{ include = "datadog_lambda" }
]
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
Expand Down Expand Up @@ -46,6 +61,15 @@ dev = [
"requests",
]

[project.optional-dependencies]
dev = [
"botocore>=1.34.0,<2",
"requests>=2.22.0,<3",
"pytest>=8.0.0,<9",
"pytest-benchmark>=4.0,<5",
"flake8>=5.0.4,<6",
]

[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
Expand Down
Loading