FitTrackee/fittrackee_api/pyproject.toml

48 lines
970 B
TOML

[tool.poetry]
name = "fittrackee_api"
version = "0.2.3-beta"
description = ""
authors = ["Your Name <you@example.com>"]
license = "GPL-3.0"
[tool.poetry.dependencies]
python = "^3.7"
flask = "^1.1"
flask-migrate = "^2.5"
flask-bcrypt = "^0.7.1"
pyjwt = "^1.7"
gpxpy = "=1.3.4"
psycopg2-binary = "^2.8"
staticmap = "^0.5.4"
pytz = "^2019.2"
python-forecastio = "^1.4"
gunicorn = "^20.0"
tqdm = "^4.41"
[tool.poetry.dev-dependencies]
pytest = "^5.3"
pytest-black = "^0.3.7"
pytest-cov = "^2.8"
pytest-isort = "^0.3.1"
pytest-flake8 = "^1.0"
pytest-runner = "^5.2"
codacy-coverage = "^1.3"
sphinx = "^2.3"
sphinxcontrib-httpdomain = "^1.7"
sphinx-bootstrap-theme = "^0.7.1"
recommonmark = "^0.6.0"
[tool.pytest]
norecursedirs = "fittrackee_api/.venv"
[tool.black]
line-length = 79
skip-string-normalization = true
target-version = ["py37", "py38"]
include = ".py$"
exclude = "migrations"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"