-
-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathrequirements.txt
60 lines (53 loc) · 1.33 KB
/
requirements.txt
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
# -----------------------------------------------------------------------------
# written by: Lawrence McDaniel
# https://lawrencemcdaniel.com
#
# usage: Python requirements for AWS Lambda functions. Create a virtual
# environment in the root of this repository named `venv`. Terraform
# modules will look for and include these requirements in the zip
# packages for each Python-based Lambda function.
# -----------------------------------------------------------------------------
# dev and test
# ------------
boto3==1.36.11
botocore>=1.35.10
pytest==8.3.4
pytest_mock==3.14.0
requests==2.32.3
# Code linters, formatters, and security scanners
# ------------
black==24.10.0
flake8==7.1.1
flake8-coding==1.3.2
pre-commit==4.1.0
isort==5.13.2
mypy==1.14.1
pylint==3.3.3
bandit==1.8.2
pydocstringformatter==0.7.3
tox==4.23.2
codespell==2.3.0
coverage==7.6.10
# Lambda layer: openai
# ------------
openai==1.61.0
# Lambda layer: common
# ------------
python-dotenv==1.0.1
pydantic==2.10.4
pydantic-settings==2.6.0
python-hcl2==5.1.1
# Lambda layer: langchain
# ------------
langchain
langchain-openai==0.3.3
#langchain-experimental
# Lambda layer: nlp
# ------------
python-Levenshtein==0.26.0
pyyaml
# weather function
googlemaps==4.10.0
openmeteo-requests==1.1.0
requests-cache==1.1.1
retry-requests==2.0.0