28 lines
567 B
TOML
28 lines
567 B
TOML
[tool.poetry]
|
|
name = "papi"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = ["Colin Goutte <cgte@bk.ru>"]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.9"
|
|
fastapi = ">=0.78.0"
|
|
uvicorn = {extras = ["standard"], version = "^0.15.0"}
|
|
SQLAlchemy = "^1.4.25"
|
|
Jinja2 = "~=3.0.0"
|
|
mailjet-rest = "^1.3.4"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
pytest = "^5.2"
|
|
flake8 = "^3.9.2"
|
|
frosted = "^1.4.1"
|
|
autopep8 = "^1.5.7"
|
|
black = "^21.9b0"
|
|
requests = "^2.26.0"
|
|
pytest-coverage = "^0.0"
|
|
ipdb = "^0.13.9"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|