This commit is contained in:
2024-04-26 03:55:21 +00:00
parent 93f58648ed
commit b71f0054a0
20 changed files with 1221 additions and 0 deletions

22
pyproject.toml Normal file
View File

@ -0,0 +1,22 @@
[tool.poetry]
name = "item-exp"
version = "0.1.0"
description = "project for manage item with exp date"
authors = ["Sam Liu <luu.dat.tham@gmail.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
fastapi = "^0.110.2"
python-dotenv = "^1.0.1"
sqlalchemy = "^2.0.29"
cryptography = "^42.0.5"
passlib = "^1.7.4"
uvicorn = {version = "^0.29.0", extras = ["standard"]}
[tool.poetry.group.dev.dependencies]
ruff = "^0.4.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"