-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (32 loc) · 966 Bytes
/
pyproject.toml
File metadata and controls
40 lines (32 loc) · 966 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
39
40
[tool.poetry]
name = "properties_service"
version = "0.2.0"
description = "Unicorn Properties Property Service"
authors = ["Amazon Web Services"]
packages = [
{ include = "properties_service", from = "src" },
{ include = "schema", from = "src" },
]
[tool.poetry.dependencies]
python = "^3.11"
boto3 = "^1.35.14"
aws-lambda-powertools = {extras = ["tracer"], version = "^3.0.0"}
aws-xray-sdk = "^2.14.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.2"
requests = "^2.32.3"
moto = {version = "^5.0.14", extras = ["dynamodb", "events", "sqs"]}
importlib-metadata = "^8.4.0"
pyyaml = "^6.0.2"
arnparse = "^0.0.2"
aws-lambda-powertools = {extras = ["tracer"], version = "^3.0.0"}
poetry-plugin-export = "^1.8.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
minversion = "8.0"
addopts = "-ra -vv -W ignore::UserWarning"
testpaths = ["tests/unit"]
[tool.ruff]
line-length = 150