-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (34 loc) · 857 Bytes
/
pyproject.toml
File metadata and controls
38 lines (34 loc) · 857 Bytes
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
[project]
name = "contracts_service"
version = "0.2.0"
description = "Unicorn Properties Contact Service"
authors = [
{name = "Amazon Web Services"}
]
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"aws-lambda-powertools[tracer]>=3.25.0",
"aws-xray-sdk>=2.15.0",
"boto3>=1.42.68",
]
[project.optional-dependencies]
dev = [
"aws-lambda-powertools[all]>=3.25.0",
"requests>=2.32.5",
"moto[dynamodb,events,sqs]>=5.1.22",
"importlib-metadata>=8.7.1",
"pyyaml>=6.0.3",
"arnparse>=0.0.2",
"pytest>=9.0.3",
"ruff>=0.15.6",
"tomli>=2.4.0",
]
[tool.setuptools]
package-dir = {"contracts_service" = "src"}
packages = ["contracts_service"]
[tool.pytest.ini_options]
minversion = "7.0"
addopts = "-ra -vv -W ignore::UserWarning"
testpaths = ["tests/unit", "tests/integration"]
pythonpath = ["."]