-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrequirements.txt
42 lines (41 loc) · 955 Bytes
/
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
# for llm prompt generation and chaining
# langchain==0.1.8
# for server
fastapi==0.109.2
# for authentication
# paseto==1.0.1
PyJWT==2.8.0
# enriched sqlalchemy ORM with pydantic
sqlmodel==0.0.16
# or asnyc operations
asyncpg==0.29.0
# for alembic migrations
psycopg2-binary==2.9.9
# for env variables
python-dotenv==1.0.1
# dev dependencies - migrations
alembic==1.13.1
# server
uvicorn==0.27.1
# password generation / verification = util
passlib==1.7.4
# logging
loguru==0.7.2
# Mangum if deployed on aws as serverless lambda
mangum==0.17.0
# security - token generation
# NOTE new version of bcrypt doesn't have __about__ with its version which
# NOTE which causes to break in lambda environment, that's why using 4.0.0
bcrypt==4.0.0
# security - media cdn signed url generation
cryptography==42.0.5
# aws
boto3==1.34.55
# TESTING
pytest==8.0.1
# for async tests
pytest-asyncio==0.23.5
# mock
pytest-mock==3.12.0
# async /sync requests
httpx==0.27.0