diabets_app/server/pyproject.toml

36 lines
701 B
TOML

[tool.poetry]
name = "diabets_app"
version = "0.1.0"
description = ""
authors = ["Simon Milvert<simon@milvert.com>"]
[tool.poetry.dependencies]
python = "^3.8"
flask = "^1.1.2"
flask_cors = "^3.0.8"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
python-dotenv = "^0.14.0"
pytest-flask = "^1.0.0"
simplejson = "^3.17.2"
coverage = {extras = ["toml"], version = "^5.2.1"}
pytest-cov = "^2.10.0"
# pyproject.toml
[tool.coverage.paths]
source = ["diabets_app", "*/site-packages"]
[tool.coverage.run]
branch = true
source = ["diabets_app"]
[tool.coverage.report]
show_missing = true
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"