recopytex/pyproject.toml

25 lines
484 B
TOML
Raw Normal View History

2022-12-20 05:01:21 +00:00
[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"
2022-12-20 08:48:51 +00:00
sqlalchemy = "^1.4.45"
2022-12-21 05:53:59 +00:00
fastapi = "^0.88.0"
uvicorn = "^0.20.0"
2022-12-20 05:01:21 +00:00
2022-12-20 05:05:51 +00:00
[tool.poetry.group.dev.dependencies]
pre-commit = "^2.20.0"
pytest = "^7.2.0"
faker = "^15.3.4"
2022-12-28 06:47:35 +00:00
requests = "^2.28.1"
pytest-cov = "^4.0.0"
2022-12-20 05:05:51 +00:00
2022-12-20 05:01:21 +00:00
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"