mirror of
https://github.com/YunoHost-Apps/django-fmd_ynh.git
synced 2024-09-03 18:26:27 +02:00
178 lines
5.6 KiB
TOML
178 lines
5.6 KiB
TOML
[project]
|
|
name = "django-fmd_ynh"
|
|
dynamic = ["version"]
|
|
description = "YunoHost app package for https://gitlab.com/jedie/django-find-my-device"
|
|
license = {text = "GPL-3.0-or-later"}
|
|
readme = "README.md"
|
|
authors = [
|
|
{name = 'Jens Diemer', email = 'git@jensdiemer.de'}
|
|
]
|
|
requires-python = ">=3.9" # Stay with 3.9 until YunoHost used >=Debian 11 (Bullseye)
|
|
dependencies = [
|
|
"django-fmd>=0.4.0", # https://gitlab.com/jedie/django-find-my-device
|
|
"requests", # TODO: Add it in 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[ynh]>=0.6.0", # https://github.com/YunoHost-Apps/django_yunohost_integration
|
|
#
|
|
"cli-base-utilities>=0.4.4", # https://github.com/jedie/cli-base-utilities
|
|
]
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"bx_django_utils", # https://github.com/boxine/bx_django_utils
|
|
"beautifulsoup4", # https://pypi.org/project/beautifulsoup4/
|
|
"manageprojects>=0.15.0", # https://github.com/jedie/manageprojects
|
|
"pip-tools", # https://github.com/jazzband/pip-tools/
|
|
"tblib", # https://github.com/ionelmc/python-tblib
|
|
"tox", # https://github.com/tox-dev/tox
|
|
"coverage", # https://github.com/nedbat/coveragepy
|
|
"autopep8", # https://github.com/hhatto/autopep8
|
|
"pyupgrade", # https://github.com/asottile/pyupgrade
|
|
"flake8", # https://github.com/pycqa/flake8
|
|
"flake8-bugbear", # https://github.com/PyCQA/flake8-bugbear
|
|
"pyflakes", # https://github.com/PyCQA/pyflakes
|
|
"codespell", # https://github.com/codespell-project/codespell
|
|
"EditorConfig", # https://github.com/editorconfig/editorconfig-core-py
|
|
"safety", # https://github.com/pyupio/safety
|
|
"mypy", # https://github.com/python/mypy
|
|
"twine", # https://github.com/pypa/twine
|
|
|
|
# https://github.com/akaihola/darker
|
|
# https://github.com/ikamensh/flynt
|
|
# https://github.com/pycqa/isort
|
|
# https://github.com/pygments/pygments
|
|
"darker[flynt, isort, color]",
|
|
|
|
# indirect depencies added because of bug:
|
|
# https://github.com/pypa/pip/issues/9644 / https://github.com/jazzband/pip-tools/issues/1866
|
|
# to avoid errors like:
|
|
# In --require-hashes mode, all requirements must have their versions pinned with ==. These do not: ...
|
|
"tomli", # Only needed for Python <3.11
|
|
]
|
|
|
|
[project.urls]
|
|
Documentation = "https://github.com/YunoHost-Apps/django-fmd_ynh"
|
|
Source = "https://github.com/YunoHost-Apps/django-fmd_ynh"
|
|
|
|
[project.scripts]
|
|
django_fmd_ynh_app = "django_fmd_ynh.__main__:main"
|
|
django_fmd_ynh_dev = "django_fmd_ynh.cli.dev:main"
|
|
|
|
[ynh-integration]
|
|
local_settings_source= "local_settings_source.py"
|
|
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=61.0", "setuptools_scm>=7.1"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["."]
|
|
include = ["django_fmd_ynh*"]
|
|
|
|
[tool.setuptools.dynamic]
|
|
version = {attr = "django_fmd_ynh.__version__"}
|
|
|
|
|
|
[tool.darker]
|
|
src = ['.']
|
|
# YunoHost apps still use "master" istead of "main", isn't it?
|
|
revision = "origin/master..."
|
|
line_length = 119
|
|
color = 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'
|
|
skip_glob=[".*", "*/htmlcov/*","*/migrations/*","*/local_test/*"]
|
|
known_first_party=['django-fmd', 'django_fmd_ynh']
|
|
line_length=119
|
|
lines_after_imports=2
|
|
|
|
|
|
[tool.coverage.run]
|
|
branch = true
|
|
parallel = true
|
|
concurrency = ["multiprocessing"]
|
|
source = ['.']
|
|
command_line = './dev-cli.py test'
|
|
disable_warnings = ["couldnt-parse"]
|
|
|
|
[tool.coverage.report]
|
|
omit = ['.*', '*/tests/*']
|
|
skip_empty = true
|
|
fail_under = 10
|
|
show_missing = true
|
|
exclude_lines = [
|
|
'if self.debug:',
|
|
'pragma: no cover',
|
|
'raise NotImplementedError',
|
|
'if __name__ == .__main__.:',
|
|
]
|
|
|
|
|
|
[tool.tox] # https://tox.wiki/en/latest/config.html#pyproject-toml
|
|
legacy_tox_ini = """
|
|
[tox]
|
|
isolated_build = True
|
|
envlist = py{312,311,310}
|
|
skip_missing_interpreters = True
|
|
|
|
[testenv]
|
|
passenv = *
|
|
skip_install = true
|
|
commands_pre =
|
|
pip install -U pip-tools
|
|
pip-sync requirements.dev.txt
|
|
commands =
|
|
{envpython} -m coverage run --context='{envname}'
|
|
{envpython} -m coverage combine --append
|
|
{envpython} -m coverage xml
|
|
{envpython} -m coverage report
|
|
"""
|
|
|
|
|
|
[tool.mypy]
|
|
warn_unused_configs = true
|
|
ignore_missing_imports = true
|
|
allow_redefinition = true # https://github.com/python/mypy/issues/7165
|
|
show_error_codes = true
|
|
plugins = []
|
|
exclude = ['.venv', 'tests']
|
|
|
|
|
|
[manageprojects] # https://github.com/jedie/manageprojects
|
|
initial_revision = "1f3a70e"
|
|
initial_date = 2024-05-21T21:22:39+02:00
|
|
cookiecutter_template = "https://github.com/jedie/cookiecutter_templates/"
|
|
cookiecutter_directory = "yunohost_django_package"
|
|
|
|
[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/"
|