You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

22 lines
519 B

# {{ project_name }} Dependencies
# @author: {{ author }}
# @date: {{ date }}
fastapi==0.104.1
uvicorn[standard]==0.24.0
sqlalchemy==2.0.23
pydantic==2.5.2
python-multipart==0.0.6
{% if database_type == 'mysql' %}
pymysql==1.1.0
cryptography==41.0.7
{% elif database_type == 'postgresql' %}
psycopg2-binary==2.9.9
{% elif database_type == 'sqlite' %}
# SQLite is included in Python standard library
{% endif %}
python-jose[cryptography]==3.3.0
passlib[bcrypt]==1.7.4
httpx==0.25.2
pytest==7.4.3
pytest-asyncio==0.23.2