django_example_ynh/pyproject.toml

89 lines
2.1 KiB
TOML
Raw Normal View History

2020-12-23 19:53:13 +01:00
[tool.poetry]
name = "django_example_ynh"
2021-09-15 19:16:35 +02:00
version = "v0.2.0"
description = "Demo YunoHost Application to demonstrate the integration of a Django project under YunoHost."
2020-12-23 19:53:13 +01:00
authors = ["JensDiemer <git@jensdiemer.de>"]
license = "GPL"
2021-09-15 19:16:35 +02:00
homepage = "https://github.com/YunoHost-Apps/django_example_ynh"
2020-12-23 19:53:13 +01:00
[tool.poetry.dependencies]
python = ">=3.7,<4.0.0"
django_yunohost_integration = {version = "*", extras = ["ynh"]}
2020-12-23 19:53:13 +01:00
[tool.poetry.dev-dependencies]
2021-09-15 19:16:35 +02:00
bx_py_utils = "*" # https://github.com/boxine/bx_py_utils
bx_django_utils = "*" # https://github.com/boxine/bx_django_utils
2020-12-23 19:53:13 +01:00
tox = "*"
pytest = "*"
pytest-cov = "*"
pytest-django = "*"
coveralls = "*"
isort = "*"
flake8 = "*"
flynt = "*"
black = "*"
pyupgrade = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
2020-12-23 19:53:13 +01:00
[tool.isort]
# https://pycqa.github.io/isort/docs/configuration/config_files/#pyprojecttoml-preferred-format
atomic=true
line_length=120
case_sensitive=false
skip_glob=["*/htmlcov/*","*/migrations/*"]
2020-12-23 19:53:13 +01:00
multi_line_output=3
include_trailing_comma=true
known_first_party=[]
2020-12-23 19:53:13 +01:00
no_lines_before="LOCALFOLDER"
default_section="THIRDPARTY"
sections=["FUTURE","STDLIB","THIRDPARTY","FIRSTPARTY","LOCALFOLDER"]
lines_after_imports=2
[tool.pytest.ini_options]
# https://docs.pytest.org/en/latest/customize.html#pyproject-toml
minversion = "6.0"
norecursedirs = ".* .git __pycache__ conf coverage* dist htmlcov"
2020-12-23 19:53:13 +01:00
# sometimes helpfull "addopts" arguments:
# -vv
# --verbose
# --capture=no
# --trace-config
# --full-trace
# -p no:warnings
addopts = """
--import-mode=importlib
--reuse-db
--nomigrations
--cov=.
--cov-report term-missing
--cov-report html
--cov-report xml
--no-cov-on-fail
--showlocals
--doctest-modules
--failed-first
--last-failed-no-failures all
--new-first
"""
[tool.tox]
# https://tox.readthedocs.io/en/latest/example/basic.html#pyproject-toml-tox-legacy-ini
legacy_tox_ini = """
[tox]
isolated_build = True
envlist = py39,py38,py37
skip_missing_interpreters = True
[testenv]
passenv = *
whitelist_externals = make
2020-12-23 19:53:13 +01:00
commands =
make pytest
2020-12-23 19:53:13 +01:00
"""