FitTrackee/pyproject.toml

61 lines
1.2 KiB
TOML
Raw Normal View History

[tool.poetry]
name = "fittrackee"
version = "0.3.0-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 = "^2020.1"
python-forecastio = "^1.4"
gunicorn = "^20.0"
tqdm = "^4.48"
humanize = "^2.5.0"
dramatiq = {extras = ["redis"], version = "^1.9.0"}
flask-dramatiq = "^0.6.0"
[tool.poetry.dev-dependencies]
black = "^20.8b1"
pytest = "^6.0"
pytest-black = "^0.3.10"
pytest-cov = "^2.10"
pytest-isort = "^1.1"
pytest-flake8 = "^1.0"
pytest-runner = "^5.2"
sphinx = "^3.2"
sphinxcontrib-httpdomain = "^1.7"
sphinx-bootstrap-theme = "^0.7.1"
recommonmark = "^0.6.0"
pyopenssl = "^19.0"
freezegun = "^1.0.0"
pytest-selenium = "^2.0.0"
[tool.pytest]
norecursedirs = "fittrackee/.venv"
[tool.black]
line-length = 79
skip-string-normalization = true
target-version = ["py37", "py38"]
include = ".py$"
exclude = "migrations"
[tool.isort]
known_third_party = "fittrackee"
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
combine_as_imports = true
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"