18 lines
357 B
TOML
18 lines
357 B
TOML
[project]
|
|
name = "secuvault"
|
|
version = "0.1.0"
|
|
description = "Shared password vault"
|
|
readme = "README.md"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"bcrypt>=5.0.0",
|
|
"cryptography>=46.0.7",
|
|
"fastapi>=0.135.3",
|
|
"itsdangerous>=2.2.0",
|
|
"jinja2>=3.1.6",
|
|
"python-dotenv>=1.0.0",
|
|
"python-multipart>=0.0.26",
|
|
"uvicorn>=0.44.0",
|
|
]
|
|
|