django-fritzconnection_ynh/pyproject.toml

113 lines
2.5 KiB
TOML
Raw Normal View History

2022-04-02 17:44:57 +02:00
[tool.poetry]
name = "django-fritzconnection_ynh"
2022-04-08 17:52:00 +02:00
version = "0.1.0.rc1~ynh1"
2022-04-02 17:44:57 +02:00
description = "Test django-fritzconnection_ynh via local_test.py"
authors = ["JensDiemer <git@jensdiemer.de>"]
license = "GPL"
[tool.poetry.dependencies]
2022-04-02 19:34:39 +02:00
# Keep Python 3.7 until Yunohost contains a newer Python Version ;)
python = ">=3.7,<4.0.0"
2022-04-08 17:52:00 +02:00
django-fritzconnection = ">=0.1.0.rc1"
2022-04-02 17:44:57 +02:00
# Note: "ynh" extras will install gunicorn, psycopg2, django-redis and django-axes
django_yunohost_integration = {version = ">=v0.2.0", extras = ["ynh"]}
psycopg2 = "*" # https://www.psycopg.org/docs/install.html#build-prerequisites
[tool.poetry.dev-dependencies]
bx_py_utils = "*"
tox = "*"
pytest = "*"
pytest-cov = "*"
pytest-django = "*"
pytest-darker = "*" # https://github.com/akaihola/pytest-darker
pytest-flake8 = "*"
pytest-isort = "*"
coveralls = "*"
isort = "*"
flake8 = "*"
flynt = "*"
darker = "*" # https://github.com/akaihola/darker
pyupgrade = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.darker]
src = ['.']
revision = "origin/master..."
2022-04-02 20:35:22 +02:00
line_length = 100
2022-04-02 17:44:57 +02:00
verbose = true
skip_string_normalization = true
diff = false
check = false
stdout = false
isort = true
lint = [
"flake8",
]
log_level = "INFO"
[tool.flynt]
2022-04-02 20:35:22 +02:00
line_length = 100
2022-04-02 17:44:57 +02:00
[tool.isort]
# https://pycqa.github.io/isort/docs/configuration/config_files/#pyprojecttoml-preferred-format
atomic=true
profile='black'
2022-04-02 20:35:22 +02:00
line_length=100
2022-04-02 17:44:57 +02:00
skip_glob=["*/htmlcov/*","*/migrations/*"]
known_first_party=["djfritz","djfritz_project","djfritz_tests"]
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
"""
# TODO: --mypy
[tool.tox]
# https://tox.readthedocs.io/en/latest/example/basic.html#pyproject-toml-tox-legacy-ini
legacy_tox_ini = """
[tox]
isolated_build = True
2022-04-02 20:16:28 +02:00
envlist = px310,py39,py38,py37
2022-04-02 17:44:57 +02:00
skip_missing_interpreters = True
[testenv]
passenv = *
whitelist_externals = make
commands =
pytest djfritz djfritz_project
"""