-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
38 lines (32 loc) · 887 Bytes
/
pyproject.toml
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
[tool.poetry]
name = "latency-based-routing"
version = "0.1.0"
description = "This is a simple project showing how to build the whole infrastructure with latency based routing using Amazon Route 53."
authors = ["sz3jdii <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.12"
# 3rdparties
boto3 = "^1.28.62"
botocore = "^1.28.62"
pydantic = "*"
requests = "*"
cachetools = "*"
boto3-stubs = { version = "*", extras = ["cloudformation", "lambda", "route53"] }
[tool.poetry.group.dev.dependencies]
# Internal
latency-based-routing-cdk = {path = "cdk", develop = true}
# 3rdparties
pytest = "*"
pytest-mock = "*"
pytest-dotenv = "*"
pycodestyle = "*"
python-dotenv = "*"
GitPython = "*"
yapf = "*"
pylint = "*"
isort = "*"
"aws-cdk.aws-lambda-python-alpha" = "*"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"