FitTrackee/fittrackee_api/pyproject.toml

49 lines
990 B
TOML
Raw Normal View History

2019-08-28 13:24:09 +02:00
[tool.poetry]
name = "fittrackee_api"
2019-09-23 15:31:00 +02:00
version = "0.3.0-beta"
2019-08-28 13:24:09 +02:00
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"
2019-11-10 14:20:52 +01:00
pytz = "^2019.3"
2019-08-28 13:24:09 +02:00
python-forecastio = "^1.4"
2019-12-28 21:10:51 +01:00
gunicorn = "^20.0"
2020-01-28 14:48:22 +01:00
tqdm = "^4.42"
2019-08-28 13:24:09 +02:00
[tool.poetry.dev-dependencies]
2019-12-28 21:10:51 +01:00
pytest = "^5.3"
2019-08-28 13:24:09 +02:00
pytest-black = "^0.3.7"
2019-12-28 21:10:51 +01:00
pytest-cov = "^2.8"
2019-08-28 13:24:09 +02:00
pytest-isort = "^0.3.1"
pytest-flake8 = "^1.0"
2019-12-28 21:10:51 +01:00
pytest-runner = "^5.2"
2019-08-28 13:24:09 +02:00
codacy-coverage = "^1.3"
2019-12-28 21:10:51 +01:00
sphinx = "^2.3"
2019-08-28 13:24:09 +02:00
sphinxcontrib-httpdomain = "^1.7"
sphinx-bootstrap-theme = "^0.7.1"
recommonmark = "^0.6.0"
2019-11-13 12:57:36 +01:00
pyopenssl = "^19.0"
2019-08-28 13:24:09 +02:00
[tool.pytest]
norecursedirs = "fittrackee_api/.venv"
[tool.black]
line-length = 79
skip-string-normalization = true
2019-12-28 21:10:51 +01:00
target-version = ["py37", "py38"]
2019-08-28 13:24:09 +02:00
include = ".py$"
exclude = "migrations"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"