Skip to content

Commit 31bf38f

Browse files
have both tool.poetry.dependencies and project.dependencies
1 parent 2128db4 commit 31bf38f

File tree

1 file changed

+13
-6
lines changed

1 file changed

+13
-6
lines changed

pyproject.toml

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ version = "8.121.0.dev0"
44
description = "The Datadog AWS Lambda Library"
55
authors = ["Datadog, Inc. <[email protected]>"]
66

7+
[tool.poetry.dependencies]
8+
datadog = ">=0.51.0,<1.0.0"
9+
wrapt = "^1.11.2"
10+
ddtrace = "=3.19.1"
11+
ujson = ">=5.9.0"
12+
713
[project]
814
name = "datadog_lambda"
915
version = "8.121.0.dev0"
@@ -19,10 +25,17 @@ keywords = [
1925
"lambda",
2026
"layer",
2127
]
28+
dependencies = [
29+
"datadog>=0.51.0,<1.0.0",
30+
"wrapt>=1.11.2,<2",
31+
"ddtrace>=3.19.1,<4",
32+
"ujson>=5.9.0",
33+
]
2234
packages = [
2335
{ include = "datadog_lambda" }
2436
]
2537
classifiers = [
38+
"Programming Language :: Python :: 3 :: Only",
2639
"Programming Language :: Python :: 3.8",
2740
"Programming Language :: Python :: 3.9",
2841
"Programming Language :: Python :: 3.10",
@@ -31,12 +44,6 @@ classifiers = [
3144
"Programming Language :: Python :: 3.13",
3245
"Programming Language :: Python :: 3.14",
3346
]
34-
dependencies = [
35-
"datadog>=0.51.0,<1.0.0",
36-
"wrapt>=1.11.2,<2",
37-
"ddtrace>=3.19.1,<4",
38-
"ujson>=5.9.0",
39-
]
4047

4148

4249
[project.optional-dependencies]

0 commit comments

Comments
 (0)