FitTrackee/fittrackee_api/pyproject.toml

61 lines
1.2 KiB
TOML
Raw Normal View History

2019-08-28 13:24:09 +02:00
[tool.poetry]
name = "fittrackee_api"
2020-07-15 15:30:41 +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"
2020-04-29 14:57:20 +02:00
pytz = "^2020.1"
2019-08-28 13:24:09 +02:00
python-forecastio = "^1.4"
2019-12-28 21:10:51 +01:00
gunicorn = "^20.0"
2020-08-09 18:03:58 +02:00
tqdm = "^4.48"
humanize = "^2.5.0"
dramatiq = {extras = ["redis"], version = "^1.9.0"}
flask-dramatiq = "^0.6.0"
2019-08-28 13:24:09 +02:00
[tool.poetry.dev-dependencies]
2020-09-16 11:09:32 +02:00
black = "^20.8b1"
2020-08-09 18:03:58 +02:00
pytest = "^6.0"
pytest-black = "^0.3.10"
pytest-cov = "^2.10"
pytest-isort = "^1.1"
2019-08-28 13:24:09 +02:00
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"
2020-08-09 18:03:58 +02:00
sphinx = "^3.2"
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"
2020-09-16 11:09:32 +02:00
freezegun = "^1.0.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"
[tool.isort]
known_third_party = "fittrackee_api"
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
combine_as_imports = true
2019-08-28 13:24:09 +02:00
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"