[tool.poetry] name = "django_example_ynh" version = "v0.3.0" description = "Demo YunoHost Application to demonstrate the integration of a Django project under YunoHost." authors = ["JensDiemer "] license = "GPL" homepage = "https://github.com/YunoHost-Apps/django_example_ynh" [tool.poetry.urls] "Bug Tracker" = "https://github.com/YunoHost-Apps/django_example_ynh/issues" [tool.poetry.dependencies] python = ">=3.7,<4.0.0" # TODO: Update to >=3.8 after YunoHost updates to Bullseye django_yunohost_integration = {version = "*", extras = ["ynh"]} [tool.poetry.dev-dependencies] bx_py_utils = "*" # https://github.com/boxine/bx_py_utils bx_django_utils = "*" # https://github.com/boxine/bx_django_utils tox = "*" pytest = "*" pytest-cov = "*" pytest-django = "*" coveralls = "*" isort = "*" flake8 = "*" flynt = "*" blue = "*" # https://github.com/grantjenks/blue pyupgrade = "*" [build-system] requires = ["poetry-core>=1.0.0"] build-backend = "poetry.core.masonry.api" [tool.darker] src = ['.'] revision = "origin/master..." line_length = 120 verbose = true skip_string_normalization = true diff = false check = false stdout = false isort = true lint = [ "flake8", ] log_level = "INFO" [tool.flynt] line_length = 120 [tool.isort] # https://pycqa.github.io/isort/docs/configuration/config_files/#pyprojecttoml-preferred-format atomic=true profile='black' line_length=120 skip_glob=["*/htmlcov/*","*/migrations/*"] known_first_party=[] 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" # sometimes helpfull "addopts" arguments: # -vv # --verbose # --capture=no # --trace-config # --full-trace # -p no:warnings addopts = """ --reuse-db --nomigrations --cov=. --cov-report term-missing --cov-report html --cov-report xml --no-cov-on-fail --showlocals --darker --flake8 --isort --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 = px310,py39,py38,py37 skip_missing_interpreters = True [testenv] passenv = * whitelist_externals = make commands = pytest """