25 lines
484 B
TOML
25 lines
484 B
TOML
[tool.poetry]
|
|
name = "backend"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = ["Bertrand Benjamin <benjamin.bertrand@opytex.org>"]
|
|
readme = "README.md"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.10"
|
|
sqlalchemy = "^1.4.45"
|
|
fastapi = "^0.88.0"
|
|
uvicorn = "^0.20.0"
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
pre-commit = "^2.20.0"
|
|
pytest = "^7.2.0"
|
|
faker = "^15.3.4"
|
|
requests = "^2.28.1"
|
|
pytest-cov = "^4.0.0"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|