-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (31 loc) · 1.01 KB
/
pyproject.toml
File metadata and controls
33 lines (31 loc) · 1.01 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
[tool.poetry]
name = "backend"
version = "0.1.0"
description = ""
authors = ["Your Name <you@example.com>"]
readme = "README.md"
packages = [
{include = "src"},
{include = "common", from = "../shared/src"}
]
[tool.poetry.dependencies]
python = "~3.11"
"fhir.resources" = "~7.0.2"
boto3 = "~1.42.74"
boto3-stubs-lite = {extras = ["dynamodb"], version = "~1.42.74"}
aws-lambda-typing = "~2.20.0"
redis = "^4.6.0"
moto = "^5.1.22"
requests = "~2.33.0"
responses = "~0.26.0"
pydantic = "~1.10.13"
pyjwt = {extras = ["crypto"], version = "^2.12.1"}
jsonpath-ng = "^1.8.0"
simplejson = "^3.20.2"
structlog = "^24.1.0"
python-stdnum = "^2.1"
freezegun = "^1.5.1"
coverage = "^7.13.5"
[build-system]
requires = ["poetry-core ~= 1.5.0"]
build-backend = "poetry.core.masonry.api"