-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathpyproject.toml
More file actions
77 lines (71 loc) · 1.97 KB
/
pyproject.toml
File metadata and controls
77 lines (71 loc) · 1.97 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
[tool.poetry]
name = "datadog_lambda"
version = "8.123.0.dev0"
description = "The Datadog AWS Lambda Library"
authors = ["Datadog, Inc. <dev@datadoghq.com>"]
[project]
name = "datadog_lambda"
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.1.1,<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",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
# can remove tool.poetry.depencies and tool.poetry.extras
# after deprecation of Python 3.8
[tool.poetry.dependencies]
python = ">=3.8.0,<4"
datadog = ">=0.51.0,<1.0.0"
wrapt = "^1.11.2"
ddtrace = ">=3.19.1,<4"
ujson = ">=5.9.0"
botocore = { version = "^1.34.0", optional = true }
requests = { version ="^2.22.0", optional = true }
pytest = { version= "^8.0.0", optional = true }
pytest-benchmark = { version = "^4.0", optional = true }
flake8 = { version = "^5.0.4", optional = true }
[tool.poetry.extras]
dev = [
"botocore",
"flake8",
"pytest",
"pytest-benchmark",
"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"
[tool.pytest.ini_options]
addopts = "--benchmark-disable --benchmark-autosave"