-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (28 loc) · 790 Bytes
/
pyproject.toml
File metadata and controls
32 lines (28 loc) · 790 Bytes
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
[tool.poetry]
name = "volcano-api"
version = "0.1.0"
description = ""
authors = ["Your Name <you@example.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.9"
fastapi = "0.99.0"
uvicorn = {extras = ["standard"], version = "^0.29.0"}
mangum = "0.11.0"
python-dotenv = "^1.0.1"
sqlalchemy = "2.0.29"
alembic = "^1.13.1"
psycopg2-binary = "^2.9.9"
passlib = {extras = ["bcrypt"], version = "^1.7.4"}
python-jose = {extras = ["cryptography"], version = "^3.3.0"}
cffi = "^1.16.0"
cryptography = "^42.0.7"
virtualenv = "^20.26.2"
bcrypt = {version = "^4.1.3", platform = "manylinux2014_aarch64"}
argon2-cffi = "^23.1.0"
python-multipart = "^0.0.9"
boto3 = "^1.34.125"
dateparser = "^1.2.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"