mirror of
https://github.com/YunoHost-Apps/django-fmd_ynh.git
synced 2024-09-03 18:26:27 +02:00
141 lines
4 KiB
TOML
141 lines
4 KiB
TOML
[tool.poetry]
|
|
name = "django-fmd_ynh"
|
|
version = "0.3.2+ynh1"
|
|
description = "Test django-fmd_ynh via local_test.py"
|
|
authors = ["JensDiemer <git@jensdiemer.de>"]
|
|
license = "GPL"
|
|
homepage = "https://github.com/YunoHost-Apps/django-fmd_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-fmd = ">=0.3.2" # https://gitlab.com/jedie/django-find-my-device
|
|
|
|
# extras "ynh" will install: gunicorn, psycopg2, django-redis and django-axes
|
|
# see: https://github.com/YunoHost-Apps/django_yunohost_integration/blob/main/pyproject.toml
|
|
django_yunohost_integration = {version = ">=0.4.1", extras = ["ynh"]} # https://github.com/YunoHost-Apps/django_yunohost_integration
|
|
|
|
|
|
[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 = "*"
|
|
pytest-darker = "*" # https://github.com/akaihola/pytest-darker
|
|
coveralls = "*"
|
|
isort = "*"
|
|
flake8 = "*"
|
|
EditorConfig = "*" # https://github.com/editorconfig/editorconfig-core-py
|
|
safety = "*" # https://github.com/pyupio/safety
|
|
requests = "*" # https://github.com/psf/requests
|
|
packaging = "*" # https://github.com/pypa/packagi
|
|
beautifulsoup4 = "*" # https://pypi.org/project/beautifulsoup4/
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
|
|
[tool.darker]
|
|
src = ['.']
|
|
revision = "origin/master..."
|
|
line_length = 100
|
|
verbose = true
|
|
skip_string_normalization = true
|
|
diff = false
|
|
check = false
|
|
stdout = false
|
|
isort = true
|
|
lint = [
|
|
"flake8",
|
|
]
|
|
log_level = "INFO"
|
|
|
|
|
|
[tool.isort]
|
|
# https://pycqa.github.io/isort/docs/configuration/config_files/#pyprojecttoml-preferred-format
|
|
atomic=true
|
|
profile='black'
|
|
line_length=100
|
|
skip_glob=["*/htmlcov/*","*/migrations/*","*/local_test/*"]
|
|
known_first_party=["findmydevice","findmydevice_project","findmydevice_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 local_test 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
|
|
--doctest-modules
|
|
--failed-first
|
|
--new-first
|
|
"""
|
|
|
|
|
|
[tool.coverage.run]
|
|
omit = [".*"]
|
|
|
|
|
|
[tool.tox]
|
|
# https://tox.readthedocs.io/en/latest/example/basic.html#pyproject-toml-tox-legacy-ini
|
|
legacy_tox_ini = """
|
|
[tox]
|
|
isolated_build = True
|
|
envlist = py{37,38,39,310}
|
|
skip_missing_interpreters = True
|
|
|
|
[testenv]
|
|
passenv = *
|
|
whitelist_externals = make
|
|
commands =
|
|
make pytest
|
|
"""
|
|
|
|
[manageprojects] # https://github.com/jedie/manageprojects
|
|
initial_revision = "2281f4b"
|
|
initial_date = 2023-04-02T17:40:58+02:00
|
|
cookiecutter_template = "https://github.com/jedie/cookiecutter_templates/"
|
|
cookiecutter_directory = "yunohost_django_package"
|
|
applied_migrations = [
|
|
"1f3a70e", # 2024-05-21T21:22:39+02:00
|
|
]
|
|
|
|
[manageprojects.cookiecutter_context.cookiecutter]
|
|
project_name = "django-fmd"
|
|
full_name = "Jens Diemer"
|
|
github_username = "jedie"
|
|
author_email = "git@jensdiemer.de"
|
|
upstream_pkg_name = "django-fmd"
|
|
upstream_url = "https://gitlab.com/jedie/django-find-my-device"
|
|
upstream_pkg_app_name = "findmydevice"
|
|
upstream_pkg_project_name = "findmydevice_project"
|
|
ynh_app_pkg_name = "django_fmd_ynh"
|
|
ynh_app_url = "https://github.com/YunoHost-Apps/django-fmd_ynh"
|
|
bug_tracker_url = "https://gitlab.com/jedie/django-find-my-device/-/issues"
|
|
upstream_version = "0.4.0"
|
|
ynh_version = "+ynh1"
|
|
package_description = "YunoHost app package for https://gitlab.com/jedie/django-find-my-device"
|
|
license = "GPL-3.0-or-later"
|
|
_template = "https://github.com/jedie/cookiecutter_templates/"
|